summary refs log tree commit diff
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2017-06-15 01:43:38 +0200
committerBart Brouns <bart@magnetophon.nl>2017-06-16 13:18:19 +0200
commitc002b886c05271f891383b466e6810359776443c (patch)
tree818d4aeb3457e63642a918fe5f1738a248e379da
parent11b113541d26dc8f701ebc9810bf242fb70ecaec (diff)
downloadnixpkgs-c002b886c05271f891383b466e6810359776443c.tar
nixpkgs-c002b886c05271f891383b466e6810359776443c.tar.gz
nixpkgs-c002b886c05271f891383b466e6810359776443c.tar.bz2
nixpkgs-c002b886c05271f891383b466e6810359776443c.tar.lz
nixpkgs-c002b886c05271f891383b466e6810359776443c.tar.xz
nixpkgs-c002b886c05271f891383b466e6810359776443c.tar.zst
nixpkgs-c002b886c05271f891383b466e6810359776443c.zip
faustCompressors: 1.1.1 -> 1.2
-rw-r--r--pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix b/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix
index 05e2b335f82..e526e40a1e3 100644
--- a/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix
+++ b/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchFromGitHub, faust2jaqt, faust2lv2 }:
 stdenv.mkDerivation rec {
   name = "faustCompressors-v${version}";
-  version = "1.1.1";
+  version = "1.2";
 
   src = fetchFromGitHub {
     owner = "magnetophon";
     repo = "faustCompressors";
     rev = "v${version}";
-    sha256 = "0mkram2hm7i5za7pfn5crh2arbajk8praksxzgjx90rrxwl1y3d1";
+    sha256 = "144f6g17q4m50kxzdncsfzdyycdfprnpwdaxcwgxj4jky1xsha1d";
   };
 
   buildInputs = [ faust2jaqt faust2lv2 ];
@@ -15,6 +15,7 @@ stdenv.mkDerivation rec {
   buildPhase = ''
     for f in *.dsp;
     do
+      echo "compiling standalone from" $f
       faust2jaqt -time -double -t 99999 $f
     done
 
@@ -22,6 +23,7 @@ stdenv.mkDerivation rec {
 
     for f in *.dsp;
     do
+      echo "compiling plugin from" $f
       faust2lv2  -time -double -gui -t 99999 $f
     done
   '';
@@ -30,6 +32,7 @@ stdenv.mkDerivation rec {
     mkdir -p $out/lib/lv2
     mv *.lv2/ $out/lib/lv2
     mkdir -p $out/bin
+    rm newlib.sh
     for f in $(find . -executable -type f);
     do
       cp $f $out/bin/