nixpkgs/pkgs/development/libraries/audio/lilv/default.nix

26 lines
734 B
Nix
Raw Normal View History

2019-12-14 18:51:32 +00:00
{ stdenv, fetchurl, lv2, pkgconfig, python3, serd, sord, sratom, wafHook }:
stdenv.mkDerivation rec {
pname = "lilv";
2020-11-03 04:48:52 +00:00
version = "0.24.10";
src = fetchurl {
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
2020-11-03 04:48:52 +00:00
sha256 = "1565zy0yz46cf2f25pi46msdnzkj6bbhml9gfigdpjnsdlyskfyi";
};
patches = [ ./lilv-pkgconfig.patch ];
2019-12-14 18:51:32 +00:00
nativeBuildInputs = [ pkgconfig python3 wafHook ];
buildInputs = [ serd sord sratom ];
propagatedBuildInputs = [ lv2 ];
meta = with stdenv.lib; {
homepage = "http://drobilla.net/software/lilv";
description = "A C library to make the use of LV2 plugins";
license = licenses.mit;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}