Skip to content

Commit b2ad9bf

Browse files
authored
kapitonov-plugins-pack: init at 1.2.1 (#85496)
1 parent c6aa9e4 commit b2ad9bf

2 files changed

Lines changed: 45 additions & 0 deletions

File tree

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{ stdenv, fetchFromGitHub, faust, meson, ninja, pkg-config
2+
, boost, cairo, fftw, gnome3, ladspa-sdk, libxcb, lv2, xcbutilwm
3+
, zita-convolver, zita-resampler
4+
}:
5+
6+
stdenv.mkDerivation rec {
7+
pname = "kapitonov-plugins-pack";
8+
version = "1.2.1";
9+
10+
src = fetchFromGitHub {
11+
owner = "olegkapitonov";
12+
repo = pname;
13+
rev = version;
14+
sha256 = "1mxi7b1vrzg25x85lqk8c77iziqrqyz18mqkfjlz09sxp5wfs9w4";
15+
};
16+
17+
nativeBuildInputs = [
18+
faust
19+
meson
20+
ninja
21+
pkg-config
22+
];
23+
24+
buildInputs = [
25+
boost
26+
cairo
27+
fftw
28+
ladspa-sdk
29+
libxcb
30+
lv2
31+
xcbutilwm
32+
zita-convolver
33+
zita-resampler
34+
];
35+
36+
meta = with stdenv.lib; {
37+
description = "Set of LADSPA and LV2 plugins for guitar sound processing";
38+
homepage = https://github.com/olegkapitonov/Kapitonov-Plugins-Pack;
39+
license = licenses.gpl3;
40+
platforms = platforms.linux;
41+
maintainers = with maintainers; [ magnetophon ];
42+
};
43+
}

pkgs/top-level/all-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21000,6 +21000,8 @@ in
2100021000

2100121001
kanshi = callPackage ../tools/misc/kanshi { };
2100221002

21003+
kapitonov-plugins-pack = callPackage ../applications/audio/kapitonov-plugins-pack { };
21004+
2100321005
kdeApplications =
2100421006
let
2100521007
mkApplications = import ../applications/kde;

0 commit comments

Comments
 (0)