add zam-plugins: a set of audio plugins
This commit is contained in:
parent
655eed7a93
commit
0d8af2ce9a
29
pkgs/applications/audio/zam-plugins/default.nix
Normal file
29
pkgs/applications/audio/zam-plugins/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, fetchurl, boost, libX11, mesa, liblo, jack2, ladspaH, lv2, pkgconfig, rubberband, libsndfile }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "zam-plugins-${version}";
|
||||||
|
version = "3.5";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/zamaudio/zam-plugins/archive/${version}.tar.gz";
|
||||||
|
sha256 = "0icdrs4vaaj8gqi76jkkx5yk9h3agipa11cyb5h52y814q6mx6vm";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ boost libX11 mesa liblo jack2 ladspaH lv2 pkgconfig rubberband libsndfile ];
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
patchShebangs ./libs/generate-ttl.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
makeFlags = [
|
||||||
|
"PREFIX=$(out)"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://www.zamaudio.com/?p=976;
|
||||||
|
description = "A collection of LV2/LADSPA/VST/JACK audio plugins by ZamAudio";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = [ maintainers.magnetophon ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -12756,6 +12756,8 @@ let
|
|||||||
fltk = fltk13;
|
fltk = fltk13;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
zam-plugins = callPackage ../applications/audio/zam-plugins { inherit (xlibs) libX11; };
|
||||||
|
|
||||||
zathuraCollection = recurseIntoAttrs
|
zathuraCollection = recurseIntoAttrs
|
||||||
(let callPackage = newScope pkgs.zathuraCollection; in
|
(let callPackage = newScope pkgs.zathuraCollection; in
|
||||||
import ../applications/misc/zathura {
|
import ../applications/misc/zathura {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user