pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / by-name / fu / furnace / package.nix
blob8b9428c6b239204f396d388b8fd29168b75adbe7
1 { stdenv
2 , lib
3 , testers
4 , furnace
5 , fetchFromGitHub
6 , cmake
7 , pkg-config
8 , makeWrapper
9 , fftw
10 , fmt
11 , freetype
12 , libsndfile
13 , libX11
14 , rtmidi
15 , SDL2
16 , zlib
17 , withJACK ? stdenv.hostPlatform.isUnix
18 , libjack2
19 , withGUI ? true
20 , darwin
21 , portaudio
22 , alsa-lib
23 # Enable GL/GLES rendering
24 , withGL ? !stdenv.hostPlatform.isDarwin
25 # Use GLES instead of GL, some platforms have better support for one than the other
26 , preferGLES ? stdenv.hostPlatform.isAarch
29 stdenv.mkDerivation (finalAttrs: {
30   pname = "furnace";
31   version = "0.6.7";
33   src = fetchFromGitHub {
34     owner = "tildearrow";
35     repo = "furnace";
36     rev = "v${finalAttrs.version}";
37     fetchSubmodules = true;
38     hash = "sha256-G5yjqsep+hDGXCqGNBKoMvV7JOD7ZZTxTPBl9VmG8RM=";
39   };
41   postPatch = lib.optionalString stdenv.hostPlatform.isLinux ''
42     # To offer scaling detection on X11, furnace checks if libX11.so is available via dlopen and uses some of its functions
43     # But it's being linked against a versioned libX11.so.VERSION via SDL, so the unversioned one is not on the rpath
44     substituteInPlace src/gui/scaling.cpp \
45       --replace-fail 'libX11.so' '${lib.getLib libX11}/lib/libX11.so'
46   '';
48   nativeBuildInputs = [
49     cmake
50     pkg-config
51   ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
52     makeWrapper
53   ];
55   buildInputs = [
56     fftw
57     fmt
58     freetype
59     libsndfile
60     rtmidi
61     SDL2
62     zlib
63     portaudio
64   ] ++ lib.optionals withJACK [
65     libjack2
66   ] ++ lib.optionals stdenv.hostPlatform.isLinux [
67     # portaudio pkg-config is pulling this in as a link dependency, not set in propagatedBuildInputs
68     alsa-lib
69   ] ++ lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [
70     Cocoa
71   ]);
73   cmakeFlags = [
74     (lib.cmakeBool "BUILD_GUI" withGUI)
75     (lib.cmakeBool "SYSTEM_FFTW" true)
76     (lib.cmakeBool "SYSTEM_FMT" true)
77     (lib.cmakeBool "SYSTEM_LIBSNDFILE" true)
78     (lib.cmakeBool "SYSTEM_RTMIDI" true)
79     (lib.cmakeBool "SYSTEM_SDL2" true)
80     (lib.cmakeBool "SYSTEM_ZLIB" true)
81     (lib.cmakeBool "USE_FREETYPE" true)
82     (lib.cmakeBool "SYSTEM_FREETYPE" true)
83     (lib.cmakeBool "WITH_JACK" withJACK)
84     (lib.cmakeBool "WITH_PORTAUDIO" true)
85     (lib.cmakeBool "SYSTEM_PORTAUDIO" true)
86     (lib.cmakeBool "WITH_RENDER_SDL" true)
87     (lib.cmakeBool "WITH_RENDER_OPENGL" withGL)
88     (lib.cmakeBool "USE_GLES" (withGL && preferGLES))
89     (lib.cmakeBool "WITH_RENDER_METAL" false) # fails to build
90     (lib.cmakeBool "WITH_RENDER_OPENGL1" (withGL && !preferGLES))
91     (lib.cmakeBool "FORCE_APPLE_BIN" true)
92   ];
94   postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
95     # Normal CMake install phase on Darwin only installs the binary, the user is expected to use CPack to build a
96     # bundle. That adds alot of overhead for not much benefit (CPack is currently abit broken, and needs impure access
97     # to /usr/bin/hdiutil). So we'll manually assemble & install everything instead.
99     mkdir -p $out/{Applications/Furnace.app/Contents/{MacOS,Resources},share/{,doc,licenses}/furnace}
100     mv $out/{bin,Applications/Furnace.app/Contents/MacOS}/furnace
101     makeWrapper $out/{Applications/Furnace.app/Contents/MacOS,bin}/furnace
103     install -m644 {../res,$out/Applications/Furnace.app/Contents}/Info.plist
104     install -m644 ../res/icon.icns $out/Applications/Furnace.app/Contents/Resources/Furnace.icns
105     install -m644 {..,$out/share/licenses/furnace}/LICENSE
106     cp -r ../papers $out/share/doc/furnace/
107     cp -r ../demos $out/share/furnace/
108   '';
110   passthru = {
111     updateScript = ./update.sh;
112     tests.version = testers.testVersion {
113       package = furnace;
114     };
115   };
117   meta = {
118     description = "Multi-system chiptune tracker compatible with DefleMask modules";
119     homepage = "https://github.com/tildearrow/furnace";
120     changelog = "https://github.com/tildearrow/furnace/releases/tag/v${finalAttrs.version}";
121     license = with lib.licenses; [ gpl2Plus ];
122     maintainers = with lib.maintainers; [ OPNA2608 ];
123     platforms = lib.platforms.all;
124     mainProgram = "furnace";
125   };