liquidsfz: init at 0.3.2
This commit is contained in:
parent
37f80d1593
commit
32ef4fd545
|
@ -35,6 +35,8 @@ rec {
|
|||
|
||||
listenbrainz-content-resolver = callPythonPackage ./listenbrainz-content-resolver { };
|
||||
|
||||
liquidsfz = callPackage ./liquidsfz { };
|
||||
|
||||
mpvScripts = prev.mpvScripts // {
|
||||
pitchcontrol = callPackage ./mpv-scripts/pitchcontrol { };
|
||||
};
|
||||
|
|
|
@ -60,6 +60,7 @@
|
|||
hcloud_exporter
|
||||
linuxmotehook2
|
||||
listenbrainz-content-resolver
|
||||
liquidsfz
|
||||
netstick
|
||||
nsz
|
||||
playgsf
|
||||
|
|
41
liquidsfz/default.nix
Normal file
41
liquidsfz/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue