72 lines
1.4 KiB
Nix
72 lines
1.4 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
cairo,
|
|
libxkbcommon,
|
|
xcbutilcursor,
|
|
xcbutilkeysyms,
|
|
xcbutil,
|
|
libXrandr,
|
|
libXinerama,
|
|
libXcursor,
|
|
alsa-lib,
|
|
libjack2,
|
|
lv2,
|
|
gcc-unwrapped,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "chow-centaur";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jatinchowdhury18";
|
|
repo = "KlonCentaur";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-kDDom6q0Tgni0/L+FgBVZC1/sL9W9fRP60U4o4ijP1c=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
cairo
|
|
libxkbcommon
|
|
xcbutilcursor
|
|
xcbutilkeysyms
|
|
xcbutil
|
|
libXrandr
|
|
libXinerama
|
|
libXcursor
|
|
alsa-lib
|
|
libjack2
|
|
lv2
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_AR=${gcc-unwrapped}/bin/gcc-ar"
|
|
"-DCMAKE_RANLIB=${gcc-unwrapped}/bin/gcc-ranlib"
|
|
"-DCMAKE_NM=${gcc-unwrapped}/bin/gcc-nm"
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib/lv2 $out/lib/vst3
|
|
cd ChowCentaur/ChowCentaur_artefacts/Release
|
|
cp -r LV2/ChowCentaur.lv2 $out/lib/lv2
|
|
cp -r VST3/ChowCentaur.vst3 $out/lib/vst3
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Digital emulation of the Klon Centaur guitar pedal using RNNs, Wave Digital Filters, and more";
|
|
homepage = "https://github.com/jatinchowdhury18/KlonCentaur";
|
|
license = licenses.bsd3;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ magnetophon ];
|
|
};
|
|
})
|