uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
33
pkgs/applications/audio/pd-plugins/cyclone/default.nix
Normal file
33
pkgs/applications/audio/pd-plugins/cyclone/default.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ lib, stdenv, fetchFromGitHub, puredata }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cyclone";
|
||||
version = "0.3beta-2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "porres";
|
||||
repo = "pd-cyclone";
|
||||
rev = "cyclone${version}";
|
||||
sha256 = "192jrq3bdsv626js1ymq10gwp9wwcszjs63ys6ap9ig8xdkbhr3q";
|
||||
};
|
||||
|
||||
buildInputs = [ puredata ];
|
||||
|
||||
makeFlags = [
|
||||
"pdincludepath=${puredata}/include/pd"
|
||||
"prefix=$(out)"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
mv "$out/lib/pd-externals/cyclone" "$out/"
|
||||
rm -rf $out/lib
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A library of PureData classes, bringing some level of compatibility between Max/MSP and Pd environments";
|
||||
homepage = "http://puredata.info/downloads/cyclone";
|
||||
license = lib.licenses.tcltk;
|
||||
maintainers = [ lib.maintainers.magnetophon ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue