Files
nixpkgs/pkgs/by-name/ge/geonkick/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

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.2";
src = fetchFromGitLab {
owner = "Geonkick-Synthesizer";
repo = "geonkick";
rev = "v${version}";
hash = "sha256-1khlAY9szKdwX/kMJvuD1CTO5M8GeMBVCSPmt52GJyA=";
};
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";
};
}