about summary refs log tree commit diff
path: root/pkgs/applications/audio/plugin-torture
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2016-07-15 18:47:46 +0200
committerBart Brouns <bart@magnetophon.nl>2016-07-17 15:10:52 +0200
commit38f356b32821ed43943cc4ddf2b7f704f3ab25b4 (patch)
treeeefb7ff4916ef5bd23e9791bd943a91fd4a3b838 /pkgs/applications/audio/plugin-torture
parent3223ef5df509cba22e5a9d77b33d4438ecd22a67 (diff)
plugin-torture: git 2013-10-03 -> 5
Diffstat (limited to 'pkgs/applications/audio/plugin-torture')
-rw-r--r--pkgs/applications/audio/plugin-torture/default.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/applications/audio/plugin-torture/default.nix b/pkgs/applications/audio/plugin-torture/default.nix
index cca4538422f41..e4fb83439e0d5 100644
--- a/pkgs/applications/audio/plugin-torture/default.nix
+++ b/pkgs/applications/audio/plugin-torture/default.nix
@@ -1,13 +1,14 @@
-{ stdenv, fetchgit, boost, ladspaH, lilv, lv2, pkgconfig, serd, sord, sratom }:
+{ stdenv, fetchFromGitHub, boost, ladspaH, lilv, lv2, pkgconfig, serd, sord, sratom }:
 
 stdenv.mkDerivation rec {
-  name = "plugin-torture-git-${version}";
-  version = "2013-10-03";
+  name = "plugin-torture-${version}";
+  version = "5";
 
-  src = fetchgit {
-    url = "https://github.com/cth103/plugin-torture";
-    rev = "9ee06016982bdfbaa215cd0468cc6ada6367462a";
-    sha256 = "0ynzfs3z95lbw4l1w276as2a37zxp0cw6pi3lbikr0qk0r7j5j10";
+  src = fetchFromGitHub {
+    owner = "cth103";
+    repo = "plugin-torture";
+    rev = "v${version}";
+    sha256 = "1mlgxjsyaz86wm4k32ll2w5nghjffnsdqlm6kjv02a4dpb2bfrih";
   };
 
   buildInputs = [ boost ladspaH lilv lv2 pkgconfig serd sord sratom ];
@@ -15,7 +16,7 @@ stdenv.mkDerivation rec {
   installPhase = ''
     mkdir -p $out/bin
     cp plugin-torture $out/bin/
-    cp README $out/bin/
+    cp find-safe-plugins $out/bin/
   '';
 
   meta = with stdenv.lib; {