Merge pull request #20058 from magnetophon/ladspaPlugins
ladspaPlugins: 0.4.15 -> 0.4.17
This commit is contained in:
commit
1d0a7ae2d3
@ -1,22 +1,29 @@
|
|||||||
{ stdenv, fetchurl, fftw, ladspaH, pkgconfig }:
|
{ stdenv, fetchurl, autoreconfHook, automake, fftw, ladspaH, libxml2, pkgconfig
|
||||||
|
, perlPackages }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "swh-plugins-${version}";
|
||||||
|
version = "0.4.17";
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "swh-plugins-0.4.15";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://plugin.org.uk/releases/0.4.15/swh-plugins-0.4.15.tar.gz;
|
url = "https://github.com/swh/ladspa/archive/v${version}.tar.gz";
|
||||||
sha256 = "0h462s4mmqg4iw7zdsihnrmz2vjg0fd49qxw2a284bnryjjfhpnh";
|
sha256 = "1rqwh8xrw6hnp69dg4gy336bfbfpmbx4fjrk0nb8ypjcxkz91c6i";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [fftw ladspaH pkgconfig];
|
buildInputs = [ autoreconfHook fftw ladspaH libxml2 pkgconfig perlPackages.perl perlPackages.XMLParser ];
|
||||||
|
|
||||||
postInstall =
|
patchPhase = ''
|
||||||
''
|
patchShebangs .
|
||||||
mkdir -p $out/share/ladspa/
|
patchShebangs ./metadata/
|
||||||
ln -sv $out/lib/ladspa $out/share/ladspa/lib
|
cp ${automake}/share/automake-*/mkinstalldirs .
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://plugin.org.uk/;
|
||||||
description = "LADSPA format audio plugins";
|
description = "LADSPA format audio plugins";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.magnetophon ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,28 +0,0 @@
|
|||||||
{ stdenv, fetchgit, autoreconfHook, automake, fftw, ladspaH, libxml2, pkgconfig
|
|
||||||
, perl, perlPackages }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "swh-plugins-git-2015-03-04";
|
|
||||||
|
|
||||||
src = fetchgit {
|
|
||||||
url = https://github.com/swh/ladspa.git;
|
|
||||||
rev = "4b8437e8037cace3d5bf8ce6d1d1da0182aba686";
|
|
||||||
sha256 = "1rmqm4780dhp0pj2scl3k7m8hpp1x6w6ln4wwg954zb9570rqaxx";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ autoreconfHook fftw ladspaH libxml2 pkgconfig perl perlPackages.XMLParser ];
|
|
||||||
|
|
||||||
patchPhase = ''
|
|
||||||
patchShebangs .
|
|
||||||
patchShebangs ./metadata/
|
|
||||||
cp ${automake}/share/automake-*/mkinstalldirs .
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
homepage = http://plugin.org.uk/;
|
|
||||||
description = "LADSPA format audio plugins";
|
|
||||||
license = licenses.gpl2;
|
|
||||||
maintainers = [ maintainers.magnetophon ];
|
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
|
||||||
}
|
|
@ -13460,10 +13460,6 @@ in
|
|||||||
fftw = fftwSinglePrec;
|
fftw = fftwSinglePrec;
|
||||||
};
|
};
|
||||||
|
|
||||||
ladspaPlugins-git = callPackage ../applications/audio/ladspa-plugins/git.nix {
|
|
||||||
fftw = fftwSinglePrec;
|
|
||||||
};
|
|
||||||
|
|
||||||
ladspa-sdk = callPackage ../applications/audio/ladspa-sdk { };
|
ladspa-sdk = callPackage ../applications/audio/ladspa-sdk { };
|
||||||
|
|
||||||
caps = callPackage ../applications/audio/caps { };
|
caps = callPackage ../applications/audio/caps { };
|
||||||
|
Loading…
Reference in New Issue
Block a user