468cb5980b
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, libjack2, libsndfile, xorg, freetype, libxkbcommon
|
|
, cairo, glib, gnome, flac, libogg, libvorbis, libopus
|
|
, cmake, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sfizz";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sfztools";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-3RdY5+BPsdk6vctDy24w5aJsVOV9qzSgXs62Pm5UEKs=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
buildInputs = [
|
|
libjack2
|
|
libsndfile
|
|
flac
|
|
libogg
|
|
libvorbis
|
|
libopus
|
|
xorg.libX11
|
|
xorg.libxcb
|
|
xorg.libXau
|
|
xorg.libXdmcp
|
|
xorg.xcbutil
|
|
xorg.xcbutilcursor
|
|
xorg.xcbutilrenderutil
|
|
xorg.xcbutilkeysyms
|
|
xorg.xcbutilimage
|
|
libxkbcommon
|
|
cairo
|
|
glib
|
|
gnome.zenity
|
|
freetype
|
|
];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace editor/external/vstgui4/vstgui/lib/platform/linux/x11fileselector.cpp \
|
|
--replace '"/usr/bin/zenity' '"${gnome.zenity}/bin/zenity'
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_BUILD_TYPE=Release"
|
|
"-DSFIZZ_TESTS=ON"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/sfztools/sfizz";
|
|
description = "SFZ jack client and LV2 plugin";
|
|
license = licenses.bsd2;
|
|
maintainers = [ maintainers.magnetophon ];
|
|
platforms = platforms.all;
|
|
badPlatforms = platforms.darwin;
|
|
};
|
|
}
|