mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
34 lines
908 B
Nix
34 lines
908 B
Nix
{ lib, stdenv, fetchFromGitLab, cmake, pkg-config, libsndfile, rapidjson
|
|
, libjack2, lv2, libX11, cairo, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "geonkick";
|
|
version = "3.4.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "Geonkick-Synthesizer";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-zoEC85QYcQMF92KvLBikYw1nDoSHaedpTDDqvoAtte0=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|