depot/pkgs/by-name/ge/geonkick/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
908 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab, cmake, pkg-config, libsndfile, rapidjson
, libjack2, lv2, libX11, cairo, openssl }:
stdenv.mkDerivation rec {
pname = "geonkick";
version = "3.5.0";
src = fetchFromGitLab {
owner = "Geonkick-Synthesizer";
repo = pname;
rev = "v${version}";
hash = "sha256-bqdqAr4NX5WZ6zp0Kq7GFHiy/JkBvDvzuZz7jxtru0Q=";
};
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";
};
}