3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/sfizz/default.nix

60 lines
1.5 KiB
Nix
Raw Normal View History

2021-12-26 20:40:20 +00:00
{ lib, stdenv, fetchFromGitHub, libjack2, libsndfile, xorg, freetype
, libxkbcommon, cairo, glib, gnome, flac, libogg, libvorbis, libopus, cmake
, pango, pkg-config }:
2020-01-19 14:27:45 +00:00
stdenv.mkDerivation rec {
pname = "sfizz";
2021-12-26 20:40:20 +00:00
version = "1.1.1";
2020-01-19 14:27:45 +00:00
src = fetchFromGitHub {
owner = "sfztools";
repo = pname;
2020-04-04 13:17:00 +01:00
rev = version;
2021-12-26 20:40:20 +00:00
sha256 = "1gzpbns89j6ggzfjjvyhgigynsv20synrs7lmc32hwp4g73l0j7n";
2020-01-19 14:27:45 +00:00
fetchSubmodules = true;
};
2021-03-24 11:13:05 +00:00
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
2021-03-24 11:13:05 +00:00
freetype
2021-12-26 20:40:20 +00:00
pango
2021-03-24 11:13:05 +00:00
];
nativeBuildInputs = [ cmake pkg-config ];
2020-01-19 14:27:45 +00:00
2021-03-24 11:13:05 +00:00
postPatch = ''
2021-12-26 20:40:20 +00:00
substituteInPlace plugins/editor/external/vstgui4/vstgui/lib/platform/linux/x11fileselector.cpp \
--replace 'zenitypath = "zenity"' 'zenitypath = "${gnome.zenity}/bin/zenity"'
substituteInPlace plugins/editor/src/editor/NativeHelpers.cpp \
--replace '/usr/bin/zenity' '${gnome.zenity}/bin/zenity'
2021-03-24 11:13:05 +00:00
'';
2020-01-19 14:27:45 +00:00
2021-12-26 20:40:20 +00:00
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" "-DSFIZZ_TESTS=ON" ];
2020-01-19 14:27:45 +00:00
meta = with lib; {
2020-01-19 14:27:45 +00:00
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;
};
}