ingen: unstable-2017-07-22 unstable-2019-12-09

This commit is contained in:
Bart Brouns
2020-01-20 11:14:03 +01:00
committed by Matthieu Coudron
parent 7450bb75c0
commit a6ecbc4443
3 changed files with 9 additions and 32 deletions

View File

@@ -1,23 +0,0 @@
{ stdenv, fetchgit, gtk2, libsndfile, pkgconfig, python, wafHook }:
stdenv.mkDerivation {
pname = "lv2-unstable";
version = "2017-07-08";
src = fetchgit {
url = "http://lv2plug.in/git/cgit.cgi/lv2.git";
rev = "39c7c726cd52b2863fcea356cafe1bcab2ba7f37";
sha256 = "1gp2rd99dfmpibvpixrqn115mrhybzf3if3h8bssf6siyi13f29r";
};
nativeBuildInputs = [ pkgconfig wafHook ];
buildInputs = [ gtk2 libsndfile python ];
meta = with stdenv.lib; {
homepage = http://lv2plug.in;
description = "A plugin standard for audio systems";
license = licenses.mit;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}