summary refs log tree commit diff
path: root/pkgs/applications/audio/lsp-plugins/default.nix
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2020-06-05 15:59:18 +0200
committerBart Brouns <bart@magnetophon.nl>2020-06-11 17:08:20 +0200
commit21836f48599127d7e708dbf4bfbbe1d469a2cc8c (patch)
tree190cc2373fb2fb62967f42c319fcc81561d28ec8 /pkgs/applications/audio/lsp-plugins/default.nix
parent28a142050d1d3c879e7b1caac285b46417b2fcfb (diff)
downloadnixpkgs-21836f48599127d7e708dbf4bfbbe1d469a2cc8c.tar
nixpkgs-21836f48599127d7e708dbf4bfbbe1d469a2cc8c.tar.gz
nixpkgs-21836f48599127d7e708dbf4bfbbe1d469a2cc8c.tar.bz2
nixpkgs-21836f48599127d7e708dbf4bfbbe1d469a2cc8c.tar.lz
nixpkgs-21836f48599127d7e708dbf4bfbbe1d469a2cc8c.tar.xz
nixpkgs-21836f48599127d7e708dbf4bfbbe1d469a2cc8c.tar.zst
nixpkgs-21836f48599127d7e708dbf4bfbbe1d469a2cc8c.zip
lsp-plugins: 1.1.19 -> 1.1.22
Diffstat (limited to 'pkgs/applications/audio/lsp-plugins/default.nix')
-rw-r--r--pkgs/applications/audio/lsp-plugins/default.nix16
1 files changed, 3 insertions, 13 deletions
diff --git a/pkgs/applications/audio/lsp-plugins/default.nix b/pkgs/applications/audio/lsp-plugins/default.nix
index ae3deccf863..435da644073 100644
--- a/pkgs/applications/audio/lsp-plugins/default.nix
+++ b/pkgs/applications/audio/lsp-plugins/default.nix
@@ -1,29 +1,19 @@
-{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, makeWrapper
+{ stdenv, fetchFromGitHub, pkgconfig, makeWrapper
 , libsndfile, jack2Full
 , libGLU, libGL, lv2, cairo
 , ladspaH, php }:
 
 stdenv.mkDerivation rec {
   pname = "lsp-plugins";
-  version = "1.1.19";
+  version = "1.1.22";
 
   src = fetchFromGitHub {
     owner = "sadko4u";
     repo = pname;
     rev = "${pname}-${version}";
-    sha256 = "1wiph3vxhydc6mr9hn2c6crd4cx592l2zv0wrzgmpnlm1lflzpbg";
+    sha256 = "0s0i0kf5nqxxywckg03fds1w7696ly60rnlljzqvp7qfgzps1r6c";
   };
 
-  patches = [
-    # Fix build
-    # https://github.com/sadko4u/lsp-plugins/issues/104
-    (fetchpatch {
-      url = "https://github.com/sadko4u/lsp-plugins/commit/4d901135fb82fa95e668b4d55d05e405f5e620d2.patch";
-      excludes = [ "TODO.txt" ];
-      sha256 = "1s028gqvahvwm1px4xxxawrw2zrwyszb1aq93f0kspf3g7lq27f1";
-    })
-  ];
-
   nativeBuildInputs = [ pkgconfig php makeWrapper ];
   buildInputs = [ jack2Full libsndfile libGLU libGL lv2 cairo ladspaH ];