summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-11-02 13:37:07 +0100
committerGitHub <noreply@github.com>2016-11-02 13:37:07 +0100
commit830787624046da973378d3999766f70ffec3d174 (patch)
tree14c754b1448640a7f352b865455ed2083fa40d02 /pkgs/applications/audio
parent827861f4b4ffbd29f58935df56119c35186f4558 (diff)
parent6c9e8efadc02699e457200b42f3951206cfa0b6e (diff)
downloadnixlib-830787624046da973378d3999766f70ffec3d174.tar
nixlib-830787624046da973378d3999766f70ffec3d174.tar.gz
nixlib-830787624046da973378d3999766f70ffec3d174.tar.bz2
nixlib-830787624046da973378d3999766f70ffec3d174.tar.lz
nixlib-830787624046da973378d3999766f70ffec3d174.tar.xz
nixlib-830787624046da973378d3999766f70ffec3d174.tar.zst
nixlib-830787624046da973378d3999766f70ffec3d174.zip
Merge pull request #19983 from magnetophon/x42-plugins
x42-plugins: 20160619 ->20160825
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/x42-plugins/default.nix36
1 files changed, 17 insertions, 19 deletions
diff --git a/pkgs/applications/audio/x42-plugins/default.nix b/pkgs/applications/audio/x42-plugins/default.nix
index 2c3d4b91f258..64ffeced13de 100644
--- a/pkgs/applications/audio/x42-plugins/default.nix
+++ b/pkgs/applications/audio/x42-plugins/default.nix
@@ -1,32 +1,30 @@
-{ stdenv, fetchurl, pkgconfig, fetchgit
+{ stdenv, fetchurl, pkgconfig
 , libltc, libsndfile, libsamplerate, ftgl, freefont_ttf, libjack2
 , mesa_glu, lv2, mesa, gtk2, cairo, pango, fftwFloat, zita-convolver }:
 
 stdenv.mkDerivation rec {
-  version = "20160619";
+  version = "20160825";
   name = "x42-plugins-${version}";
 
   src = fetchurl {
     url = "http://gareus.org/misc/x42-plugins/${name}.tar.xz";
-    sha256 = "1ald0c5xbfkdq6g5xwyy8wmbi636m3k3gqrq16kbh46g0kld1as9";
+    sha256 = "13ln5ccmrrc07ykfp040389av60dlgqz1kh6vfjkga6sq7z51msr";
   };
 
-  buildInputs = [
-    mesa_glu ftgl freefont_ttf libjack2 libltc libsndfile libsamplerate
-    lv2 mesa gtk2 cairo pango fftwFloat pkgconfig  zita-convolver
-  ];
+  buildInputs = [ mesa_glu ftgl freefont_ttf libjack2 libltc libsndfile libsamplerate lv2 mesa gtk2 cairo pango fftwFloat pkgconfig  zita-convolver];
 
-  makeFlags = [
-    "PREFIX=$(out)"
-    "FONTFILE=${freefont_ttf}/share/fonts/truetype/FreeSansBold.ttf"
-    "LIBZITACONVOLVER=${zita-convolver}/include/zita-convolver.h"
-  ];
+  makeFlags = [ "PREFIX=$(out)" "FONTFILE=${freefont_ttf}/share/fonts/truetype/FreeSansBold.ttf" ];
 
-  meta = with stdenv.lib; {
-    description = "Collection of LV2 plugins by Robin Gareus";
-    homepage = https://github.com/x42/x42-plugins;
-    maintainers = with maintainers; [ magnetophon ];
-    license = licenses.gpl2;
-    platforms = platforms.linux;
-  };
+  patchPhase = ''
+    patchShebangs ./stepseq.lv2/gridgen.sh
+    sed -i 's|/usr/include/zita-convolver.h|${zita-convolver}/include/zita-convolver.h|g' ./convoLV2/Makefile
+  '';
+
+  meta = with stdenv.lib;
+    { description = "Collection of LV2 plugins by Robin Gareus";
+      homepage = https://github.com/x42/x42-plugins;
+      maintainers = with maintainers; [ magnetophon ];
+      license = licenses.gpl2;
+      platforms = platforms.linux;
+    };
 }