Merge pull request #267887 from magnetophon/geonkick

geonkick: 2.9.1 -> 3.3.1
This commit is contained in:
Mario Rodas 2024-03-24 21:27:50 -05:00 committed by GitHub
commit 552e0cdef6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 6 deletions

View File

@ -1,22 +1,23 @@
{ lib, stdenv, fetchFromGitLab, cmake, pkg-config, libsndfile, rapidjson
, libjack2, lv2, libX11, cairo }:
, libjack2, lv2, libX11, cairo, openssl }:
stdenv.mkDerivation rec {
pname = "geonkick";
version = "2.9.1";
version = "3.3.1";
src = fetchFromGitLab {
owner = "iurie-sw";
owner = "Geonkick-Synthesizer";
repo = pname;
rev = "v${version}";
sha256 = "sha256-XSqcj8+X6QMBnIusPB9VNrgcbdiWhNMOYeFyKklGmO8=";
sha256 = "sha256-fsDoqQqZsoeQa66dxb8JC2ywUFmBf6b2J+/ixWZTzfU=";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libsndfile rapidjson libjack2 lv2 libX11 cairo ];
buildInputs = [ libsndfile rapidjson libjack2 lv2 libX11 cairo openssl ];
# https://github.com/iurie-sw/geonkick/issues/120
# Without this, the lv2 ends up in
# /nix/store/$HASH/nix/store/$HASH/lib/lv2
cmakeFlags = [
"-DCMAKE_INSTALL_LIBDIR=lib"
];