57 lines
977 B
Nix
57 lines
977 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
cmake,
|
|
pkg-config,
|
|
libsndfile,
|
|
rapidjson,
|
|
libjack2,
|
|
lv2,
|
|
libX11,
|
|
cairo,
|
|
openssl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "geonkick";
|
|
version = "3.6.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "Geonkick-Synthesizer";
|
|
repo = "geonkick";
|
|
rev = "v${version}";
|
|
hash = "sha256-lTJ5O2UfXRUELErbMS9fCdCUgxhBxKRv/nIK8w5Fkiw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libsndfile
|
|
rapidjson
|
|
libjack2
|
|
lv2
|
|
libX11
|
|
cairo
|
|
openssl
|
|
];
|
|
|
|
# Without this, the lv2 ends up in
|
|
# /nix/store/$HASH/nix/store/$HASH/lib/lv2
|
|
cmakeFlags = [
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.com/iurie-sw/geonkick";
|
|
description = "Free software percussion synthesizer";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.magnetophon ];
|
|
mainProgram = "geonkick";
|
|
};
|
|
}
|