3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/audio/lv2/unstable.nix

24 lines
665 B
Nix
Raw Normal View History

{ stdenv, fetchgit, gtk2, libsndfile, pkgconfig, python, wafHook }:
2016-11-07 13:17:49 +00:00
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "lv2-unstable";
2017-12-09 00:05:09 +00:00
version = "2017-07-08";
2016-11-07 13:17:49 +00:00
src = fetchgit {
url = "http://lv2plug.in/git/cgit.cgi/lv2.git";
2017-12-09 00:05:09 +00:00
rev = "39c7c726cd52b2863fcea356cafe1bcab2ba7f37";
sha256 = "1gp2rd99dfmpibvpixrqn115mrhybzf3if3h8bssf6siyi13f29r";
2016-11-07 13:17:49 +00:00
};
nativeBuildInputs = [ pkgconfig wafHook ];
buildInputs = [ gtk2 libsndfile python ];
2016-11-07 13:17:49 +00:00
meta = with stdenv.lib; {
homepage = http://lv2plug.in;
description = "A plugin standard for audio systems";
license = licenses.mit;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}