9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
26 lines
722 B
Nix
26 lines
722 B
Nix
{ lib, stdenv, fetchurl, gtk2, libjack2, lilv, lv2, pkg-config, python
|
|
, serd, sord , sratom, suil, wafHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jalv";
|
|
version = "1.6.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
|
sha256 = "1wwfn7yzbs37s2rdlfjgks63svd5g14yyzd2gdl7h0z12qncwsy2";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config wafHook ];
|
|
buildInputs = [
|
|
gtk2 libjack2 lilv lv2 python serd sord sratom suil
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A simple but fully featured LV2 host for Jack";
|
|
homepage = "http://drobilla.net/software/jalv";
|
|
license = licenses.isc;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|