nixpkgs/pkgs/development/libraries/audio/lilv/default.nix
2023-10-28 09:41:29 +01:00

53 lines
1 KiB
Nix

{ lib
, stdenv
, fetchurl
, lv2
, meson
, ninja
, pkg-config
, python3
, libsndfile
, serd
, sord
, sratom
, gitUpdater
# test derivations
, pipewire
}:
stdenv.mkDerivation rec {
pname = "lilv";
version = "0.24.22";
outputs = [ "out" "dev" "man" ];
src = fetchurl {
url = "https://download.drobilla.net/${pname}-${version}.tar.xz";
hash = "sha256-dvlJ0OWfyDNjQJtexeFcEEb7fdZYnTwbkgzsH9Kfn/M=";
};
nativeBuildInputs = [ meson ninja pkg-config python3 ];
buildInputs = [ libsndfile serd sord sratom ];
propagatedBuildInputs = [ lv2 ];
mesonFlags = [ "-Ddocs=disabled" ];
passthru = {
tests = {
inherit pipewire;
};
updateScript = gitUpdater {
url = "https://gitlab.com/lv2/lilv.git";
rev-prefix = "v";
};
};
meta = with 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.unix;
};
}