liquidsfz: init at 0.3.2

master
Simon Bruder 2024-01-01 15:49:58 +01:00
parent 37f80d1593
commit 32ef4fd545
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
3 changed files with 44 additions and 0 deletions

View File

@ -35,6 +35,8 @@ rec {
listenbrainz-content-resolver = callPythonPackage ./listenbrainz-content-resolver { };
liquidsfz = callPackage ./liquidsfz { };
mpvScripts = prev.mpvScripts // {
pitchcontrol = callPackage ./mpv-scripts/pitchcontrol { };
};

View File

@ -60,6 +60,7 @@
hcloud_exporter
linuxmotehook2
listenbrainz-content-resolver
liquidsfz
netstick
nsz
playgsf

41
liquidsfz/default.nix Normal file
View File

@ -0,0 +1,41 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
, libjack2
, libsndfile
, lv2
, readline
}:
stdenv.mkDerivation rec {
pname = "liquidsfz";
version = "0.3.2";
src = fetchFromGitHub {
owner = "swesterfeld";
repo = pname;
rev = version;
sha256 = "sha256-yIkHUg6q6d+YS9x0+fWEhl65urT9KI73y+W71g2SOoA=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [
libjack2
libsndfile
lv2
readline
];
enableParallelBuilding = true;
meta = with lib; {
description = "SFZ sampler";
homepage = "https://github.com/cnlohr/colorchord";
license = licenses.mpl20;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}