3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/geonkick/default.nix

32 lines
824 B
Nix
Raw Normal View History

2021-04-09 22:40:07 +01:00
{ lib, stdenv, fetchFromGitLab, cmake, pkg-config, libsndfile, rapidjson
2020-10-26 12:43:20 +00:00
, libjack2, lv2, libX11, cairo }:
2020-06-12 14:25:19 +01:00
stdenv.mkDerivation rec {
pname = "geonkick";
2021-04-09 22:40:07 +01:00
version = "2.8.0";
2020-06-12 14:25:19 +01:00
src = fetchFromGitLab {
owner = "iurie-sw";
repo = pname;
rev = "v${version}";
2021-04-09 22:40:07 +01:00
sha256 = "0dpwdjyy6phhr1jm1cabj2gc3rfsdan513mijbgnpzkq9w9jfb60";
2020-06-12 14:25:19 +01:00
};
nativeBuildInputs = [ cmake pkg-config ];
2021-04-09 22:40:07 +01:00
buildInputs = [ libsndfile rapidjson libjack2 lv2 libX11 cairo ];
2020-06-12 14:25:19 +01:00
2020-08-30 17:02:07 +01:00
# https://github.com/iurie-sw/geonkick/issues/120
2020-10-26 12:43:20 +00:00
cmakeFlags = [
"-DCMAKE_INSTALL_LIBDIR=lib"
];
2020-06-12 14:25:19 +01:00
meta = with lib; {
2020-06-12 14:25:19 +01:00
homepage = "https://gitlab.com/iurie-sw/geonkick";
description = "A free software percussion synthesizer";
2020-10-26 12:43:20 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.magnetophon ];
2020-06-12 14:25:19 +01:00
};
}