Merge pull request #16992 from magnetophon/plugin-torture

plugin-torture: git 2013-10-03 -> 5
This commit is contained in:
Joachim F 2016-07-17 18:14:38 +02:00 committed by GitHub
commit c8ec611503

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; {