nixpkgs/pkgs/applications/audio/sfizz/default.nix

62 lines
1.3 KiB
Nix
Raw Normal View History

2021-03-24 11:13:05 +00:00
{ lib, stdenv, fetchFromGitHub
, libjack2, libsndfile, xorg, freetype, libxkbcommon
, cairo, glib, gnome, flac, libogg, libvorbis, libopus
2021-03-24 11:13:05 +00:00
, cmake, pkg-config
}:
2020-01-19 14:27:45 +00:00
stdenv.mkDerivation rec {
pname = "sfizz";
2021-03-24 11:13:05 +00:00
version = "0.5.1";
2020-01-19 14:27:45 +00:00
src = fetchFromGitHub {
owner = "sfztools";
repo = pname;
2020-04-04 12:17:00 +00:00
rev = version;
2021-03-24 11:13:05 +00:00
sha256 = "sha256-3RdY5+BPsdk6vctDy24w5aJsVOV9qzSgXs62Pm5UEKs=";
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
];
nativeBuildInputs = [ cmake pkg-config ];
2020-01-19 14:27:45 +00:00
2021-03-24 11:13:05 +00:00
postPatch = ''
substituteInPlace editor/external/vstgui4/vstgui/lib/platform/linux/x11fileselector.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
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release"
"-DSFIZZ_TESTS=ON"
];
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;
};
}