depot/third_party/nixpkgs/pkgs/development/libraries/audio/lilv/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

25 lines
733 B
Nix

{ stdenv, fetchurl, lv2, pkgconfig, python3, serd, sord, sratom, wafHook }:
stdenv.mkDerivation rec {
pname = "lilv";
version = "0.24.6";
src = fetchurl {
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
sha256 = "1p3hafsxgs5d4za7n66lf5nz74qssfqpmk520cm7iq2njvvlqm2z";
};
patches = [ ./lilv-pkgconfig.patch ];
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;
};
}