plugin-torture: git 2013-10-03 -> 5

This commit is contained in:
Bart Brouns 2016-07-15 18:47:46 +02:00
parent 3223ef5df5
commit 38f356b328

View File

@ -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 { stdenv.mkDerivation rec {
name = "plugin-torture-git-${version}"; name = "plugin-torture-${version}";
version = "2013-10-03"; version = "5";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/cth103/plugin-torture"; owner = "cth103";
rev = "9ee06016982bdfbaa215cd0468cc6ada6367462a"; repo = "plugin-torture";
sha256 = "0ynzfs3z95lbw4l1w276as2a37zxp0cw6pi3lbikr0qk0r7j5j10"; rev = "v${version}";
sha256 = "1mlgxjsyaz86wm4k32ll2w5nghjffnsdqlm6kjv02a4dpb2bfrih";
}; };
buildInputs = [ boost ladspaH lilv lv2 pkgconfig serd sord sratom ]; buildInputs = [ boost ladspaH lilv lv2 pkgconfig serd sord sratom ];
@ -15,7 +16,7 @@ stdenv.mkDerivation rec {
installPhase = '' installPhase = ''
mkdir -p $out/bin mkdir -p $out/bin
cp plugin-torture $out/bin/ cp plugin-torture $out/bin/
cp README $out/bin/ cp find-safe-plugins $out/bin/
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {