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.
28 lines
785 B
Nix
28 lines
785 B
Nix
{ lib, stdenv, fetchurl, cairo, expat, fftwSinglePrec, fluidsynth, glib
|
|
, gtk2, libjack2, ladspaH , libglade, lv2, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "calf";
|
|
version = "0.90.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://calf-studio-gear.org/files/${pname}-${version}.tar.gz";
|
|
sha256 = "17x4hylgq4dn9qycsdacfxy64f5cv57n2qgkvsdp524gnqzw4az3";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildInputs = [
|
|
cairo expat fftwSinglePrec fluidsynth glib gtk2 libjack2 ladspaH
|
|
libglade lv2 pkg-config
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://calf-studio-gear.org";
|
|
description = "A set of high quality open source audio plugins for musicians";
|
|
license = licenses.lgpl2;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|