mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00

This reverts commit65a333600d
. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
automake,
|
|
fftw,
|
|
ladspaH,
|
|
libxml2,
|
|
pkg-config,
|
|
perlPackages,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "swh-plugins";
|
|
version = "0.4.17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "swh";
|
|
repo = "ladspa";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-eOtIhNcuItREUShI8JRlBVKfMfovpdfIYu+m37v4KLE=";
|
|
};
|
|
|
|
preBuild = ''
|
|
shopt -s globstar
|
|
for f in **/Makefile; do
|
|
substituteInPlace "$f" \
|
|
--replace-quiet 'ranlib' '${stdenv.cc.targetPrefix}ranlib'
|
|
done
|
|
shopt -u globstar
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
perlPackages.perl
|
|
perlPackages.XMLParser
|
|
pkg-config
|
|
perlPackages.perl
|
|
perlPackages.XMLParser
|
|
];
|
|
buildInputs = [
|
|
fftw
|
|
ladspaH
|
|
libxml2
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs --build . ./metadata/ makestub.pl
|
|
cp ${automake}/share/automake-*/mkinstalldirs .
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://plugin.org.uk/";
|
|
description = "LADSPA format audio plugins";
|
|
license = licenses.gpl2Only;
|
|
maintainers = [ maintainers.magnetophon ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|