nixpkgs/pkgs/applications/audio/ladspa-plugins/default.nix

31 lines
835 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, automake, fftw, ladspaH, libxml2, pkg-config
2016-11-01 15:26:36 +00:00
, perlPackages }:
stdenv.mkDerivation rec {
pname = "swh-plugins";
2016-11-01 15:26:36 +00:00
version = "0.4.17";
src = fetchurl {
2016-11-01 15:26:36 +00:00
url = "https://github.com/swh/ladspa/archive/v${version}.tar.gz";
sha256 = "1rqwh8xrw6hnp69dg4gy336bfbfpmbx4fjrk0nb8ypjcxkz91c6i";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ fftw ladspaH libxml2 perlPackages.perl perlPackages.XMLParser ];
2016-11-01 15:26:36 +00:00
patchPhase = ''
patchShebangs .
patchShebangs ./metadata/
cp ${automake}/share/automake-*/mkinstalldirs .
'';
meta = with lib; {
homepage = "http://plugin.org.uk/";
description = "LADSPA format audio plugins";
2016-11-01 15:26:36 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
};
}