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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
996 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, boost, libX11, libGL, liblo, libjack2, ladspaH, lv2, pkg-config, rubberband, libsndfile, fftwFloat, libsamplerate }:
2020-10-14 09:41:53 +00:00
stdenv.mkDerivation rec {
pname = "zam-plugins";
2023-11-07 13:13:40 +00:00
version = "4.2";
2020-10-14 09:41:53 +00:00
src = fetchFromGitHub {
owner = "zamaudio";
repo = pname;
rev = version;
2023-11-07 13:13:40 +00:00
sha256 = "sha256-6TPZMDhGHqXjY8UYEqlr4hweF+W19IpIfSa9Bo9Ta1A=";
2020-10-14 09:41:53 +00:00
fetchSubmodules = true;
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ boost libX11 libGL liblo libjack2 ladspaH lv2 rubberband libsndfile fftwFloat libsamplerate ];
postPatch = ''
2015-10-21 20:15:05 +00:00
patchShebangs ./dpf/utils/generate-ttl.sh
'';
makeFlags = [
"PREFIX=${placeholder "out"}"
];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://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;
};
}