summary refs log tree commit diff
path: root/pkgs/applications/audio/gxplugins-lv2/default.nix
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2019-07-15 20:46:56 +0200
committerBart Brouns <bart@magnetophon.nl>2019-07-16 00:28:03 +0200
commit40e194c6aa0689937199a1962bf67927d3c45e69 (patch)
tree83fb4d4fee269077b892724e046968054488920b /pkgs/applications/audio/gxplugins-lv2/default.nix
parent09d7dc404afc50ac78fd9f86df4e88ab935ba5e4 (diff)
downloadnixpkgs-40e194c6aa0689937199a1962bf67927d3c45e69.tar
nixpkgs-40e194c6aa0689937199a1962bf67927d3c45e69.tar.gz
nixpkgs-40e194c6aa0689937199a1962bf67927d3c45e69.tar.bz2
nixpkgs-40e194c6aa0689937199a1962bf67927d3c45e69.tar.lz
nixpkgs-40e194c6aa0689937199a1962bf67927d3c45e69.tar.xz
nixpkgs-40e194c6aa0689937199a1962bf67927d3c45e69.tar.zst
nixpkgs-40e194c6aa0689937199a1962bf67927d3c45e69.zip
GxPlugins: 0.5->0.7
Diffstat (limited to 'pkgs/applications/audio/gxplugins-lv2/default.nix')
-rw-r--r--pkgs/applications/audio/gxplugins-lv2/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/applications/audio/gxplugins-lv2/default.nix b/pkgs/applications/audio/gxplugins-lv2/default.nix
index 62f11cbfb74..04cb57800f9 100644
--- a/pkgs/applications/audio/gxplugins-lv2/default.nix
+++ b/pkgs/applications/audio/gxplugins-lv2/default.nix
@@ -3,13 +3,13 @@
 stdenv.mkDerivation rec {
   name = "${pname}-${version}";
   pname = "GxPlugins.lv2";
-  version = "0.5";
+  version = "0.7";
 
   src = fetchFromGitHub {
     owner = "brummer10";
     repo = pname;
     rev = "v${version}";
-    sha256 = "16r5bj7w726d9327flg530fn0bli4crkxjss7i56yhb1bsi39mbv";
+    sha256 = "0jqdqnkg7pg9plcbxy49p7gcs1aj6h0xf7y9gndmjmkw5yjn2940";
     fetchSubmodules = true;
   };
 
@@ -20,6 +20,12 @@ stdenv.mkDerivation rec {
 
   installFlags = [ "INSTALL_DIR=$(out)/lib/lv2" ];
 
+  configurePhase = ''
+    for i in GxBoobTube GxValveCaster; do
+      substituteInPlace $i.lv2/Makefile --replace "\$(shell which echo) -e" "echo -e"
+    done
+  '';
+
   meta = with stdenv.lib; {
     homepage = https://github.com/brummer10/GxPlugins.lv2;
     description = "A set of extra lv2 plugins from the guitarix project";