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
32
pkgs/applications/audio/pd-plugins/puremapping/default.nix
Normal file
32
pkgs/applications/audio/pd-plugins/puremapping/default.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{ lib, stdenv, fetchurl, unzip, puredata }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "puremapping";
|
||||
version = "20160130";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.chnry.net/data/puremapping-${version}-generic.zip";
|
||||
name = "puremapping";
|
||||
sha256 = "1h7qgqd8srrxw2y1rkdw5js4k6f5vc8x6nlm2mq9mq9vjck7n1j7";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ unzip ];
|
||||
buildInputs = [ puredata ];
|
||||
|
||||
unpackPhase = ''
|
||||
unzip $src
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/puremapping
|
||||
mv puremapping/ $out
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Set of externals to facilitate the use of sensors within Pure Data and to create complex relations between input and output of a dynamic system";
|
||||
homepage = "http://www.chnry.net/ch/?090-Pure-Mapping&lang=en";
|
||||
license = lib.licenses.gpl1;
|
||||
maintainers = [ lib.maintainers.magnetophon ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue