nixpkgs-suyu/pkgs/applications/audio/geonkick/default.nix

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

32 lines
823 B
Nix
Raw Normal View History

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