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.
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, fftwSinglePrec, libxslt, lv2, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "swh-lv2";
|
|
version = "1.0.16";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/swh/lv2/archive/v${version}.tar.gz";
|
|
sha256 = "0j1mih0lp4fds07knp5i32in515sh0df1qi6694pmyz2wqnm295w";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed -e "s#xsltproc#${libxslt.bin}/bin/xsltproc#" -i Makefile
|
|
sed -e "s#PREFIX = /usr/local#PREFIX = $out#" -i Makefile
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ fftwSinglePrec lv2 ];
|
|
|
|
installPhase = "make install-system";
|
|
|
|
meta = with lib; {
|
|
homepage = "http://plugin.org.uk";
|
|
description = "LV2 version of Steve Harris' SWH plugins";
|
|
longDescription = ''
|
|
SWH plugins include:
|
|
amp, fast overdrive, overdrive (with colourisation), comb
|
|
filter, waveshaper, ringmod, divider, diode, decliper, pitch
|
|
scaler, 16 band equaliser, sinus wavewrapper, hermes filter,
|
|
chorus, flanger, decimater, oscillator, gverb, phasers, harmonic
|
|
generators, surround encoders and more.
|
|
'';
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|