571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, puredata }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "mrpeach";
|
|
version = "1.1";
|
|
|
|
# this was to only usable url I could find:
|
|
# - The main url changes hash: http://pure-data.cvs.sourceforge.net/viewvc/pure-data/externals/mrpeach/?view=tar
|
|
# - There are lot's of places where this SW is available as part of a big pkg: pd-extended, pd-l2ork
|
|
# - It's just 211K
|
|
|
|
src = fetchurl {
|
|
url = "http://slackonly.com/pub/korgie/sources/pd_mrpeach-2011.10.21.tar.gz";
|
|
sha256 = "12jqba3jsdrk20ib9wc2wiivki88ypcd4mkzgsri9siywbbz9w8x";
|
|
};
|
|
|
|
buildInputs = [ puredata ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
patchPhase = ''
|
|
for D in net osc
|
|
do
|
|
sed -i "s@prefix = /usr/local@prefix = $out@g" $D/Makefile
|
|
for i in ${puredata}/include/pd/*; do
|
|
ln -s $i $D/
|
|
done
|
|
done
|
|
'';
|
|
|
|
buildPhase = ''
|
|
for D in net osc
|
|
do
|
|
cd $D
|
|
make
|
|
cd ..
|
|
done
|
|
'';
|
|
|
|
installPhase = ''
|
|
for D in net osc
|
|
do
|
|
cd $D
|
|
make install
|
|
cd ..
|
|
done
|
|
'';
|
|
|
|
fixupPhase = ''
|
|
mv $out/lib/pd-externals/net $out
|
|
mv $out/lib/pd-externals/osc $out
|
|
rm -rf $out/lib
|
|
'';
|
|
|
|
meta = {
|
|
description = "Collection of Pd objectclasses for OSC-messages";
|
|
homepage = "http://puredata.info/downloads/osc";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.magnetophon ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|