mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
108 lines
1.8 KiB
Nix
108 lines
1.8 KiB
Nix
{ alsa-lib
|
|
, at-spi2-core
|
|
, brotli
|
|
, cmake
|
|
, curl
|
|
, dbus
|
|
, libepoxy
|
|
, fetchFromGitHub
|
|
, libglut
|
|
, freetype
|
|
, gtk2-x11
|
|
, lib
|
|
, libGL
|
|
, libXcursor
|
|
, libXdmcp
|
|
, libXext
|
|
, libXinerama
|
|
, libXrandr
|
|
, libXtst
|
|
, libdatrie
|
|
, libjack2
|
|
, libpsl
|
|
, libselinux
|
|
, libsepol
|
|
, libsysprof-capture
|
|
, libthai
|
|
, libxkbcommon
|
|
, lv2
|
|
, pcre
|
|
, pkg-config
|
|
, python3
|
|
, sqlite
|
|
, stdenv
|
|
, util-linuxMinimal
|
|
, webkitgtk
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "chow-kick";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Chowdhury-DSP";
|
|
repo = "ChowKick";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-YYcNiJGGw21aVY03tyQLu3wHCJhxYiDNJZ+LWNbQdj4=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
];
|
|
buildInputs = [
|
|
alsa-lib
|
|
at-spi2-core
|
|
brotli
|
|
curl
|
|
dbus
|
|
libepoxy
|
|
libglut
|
|
freetype
|
|
gtk2-x11
|
|
libGL
|
|
libXcursor
|
|
libXdmcp
|
|
libXext
|
|
libXinerama
|
|
libXrandr
|
|
libXtst
|
|
libdatrie
|
|
libjack2
|
|
libpsl
|
|
libselinux
|
|
libsepol
|
|
libsysprof-capture
|
|
libthai
|
|
libxkbcommon
|
|
lv2
|
|
pcre
|
|
python3
|
|
sqlite
|
|
util-linuxMinimal
|
|
webkitgtk
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_AR=${stdenv.cc.cc}/bin/gcc-ar"
|
|
"-DCMAKE_RANLIB=${stdenv.cc.cc}/bin/gcc-ranlib"
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib/lv2 $out/lib/vst3 $out/bin
|
|
cp -r ChowKick_artefacts/Release/LV2/ChowKick.lv2 $out/lib/lv2
|
|
cp -r ChowKick_artefacts/Release/VST3/ChowKick.vst3 $out/lib/vst3
|
|
cp ChowKick_artefacts/Release/Standalone/ChowKick $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Chowdhury-DSP/ChowKick";
|
|
description = "Kick synthesizer based on old-school drum machine circuits";
|
|
license = with licenses; [ bsd3 ];
|
|
maintainers = with maintainers; [ magnetophon ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "ChowKick";
|
|
};
|
|
})
|