8965393f1f
Without the change the build fails on `master` as https://hydra.nixos.org/build/249149391: ../data/plugins/generated/compressor.lv2/compressor.cpp ../data/plugins/generated/compressor.lv2/compressor.cpp:351:9: error: 'intptr_t' does not name a type 351 | intptr_t fpsr = 0; | ^~~~~~~~
235 lines
4.1 KiB
Nix
235 lines
4.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, fetchFromSourcehut
|
|
, fetchpatch
|
|
, SDL2
|
|
, alsa-lib
|
|
, appstream
|
|
, appstream-glib
|
|
, bash-completion
|
|
, boost
|
|
, breeze-icons
|
|
, carla
|
|
, chromaprint
|
|
, cmake
|
|
, curl
|
|
, dbus
|
|
, dconf
|
|
, faust2lv2
|
|
, fftw
|
|
, fftwFloat
|
|
, flex
|
|
, glib
|
|
, graphviz
|
|
, gtk4
|
|
, gtksourceview5
|
|
, guile
|
|
, help2man
|
|
, jq
|
|
, json-glib
|
|
, kissfft
|
|
, libadwaita
|
|
, libaudec
|
|
, libbacktrace
|
|
, libcyaml
|
|
, libepoxy
|
|
, libgtop
|
|
, libjack2
|
|
, libpanel
|
|
, libpulseaudio
|
|
, libsamplerate
|
|
, libsass
|
|
, libsndfile
|
|
, libsoundio
|
|
, libxml2
|
|
, libyaml
|
|
, lilv
|
|
, lv2
|
|
, meson
|
|
, ninja
|
|
, pandoc
|
|
, pcre
|
|
, pcre2
|
|
, pkg-config
|
|
, python3
|
|
, reproc
|
|
, rtaudio
|
|
, rtmidi
|
|
, rubberband
|
|
, sassc
|
|
, serd
|
|
, sord
|
|
, sox
|
|
, sratom
|
|
, texi2html
|
|
, vamp-plugin-sdk
|
|
, wrapGAppsHook
|
|
, xdg-utils
|
|
, xxHash
|
|
, zix
|
|
, zstd
|
|
}:
|
|
|
|
let
|
|
# As of zrythm-1.0.0-beta.4.5.62, Zrythm needs clap
|
|
# https://github.com/falktx/carla/tree/main/source/includes/clap, which is
|
|
# only available on Carla unstable as of 2023-02-24.
|
|
carla-unstable = carla.overrideAttrs (oldAttrs: rec {
|
|
pname = "carla";
|
|
version = "unstable-2023-05-12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "falkTX";
|
|
repo = pname;
|
|
rev = "0175570f1d41285f39efe0ee32234458e0ed941c";
|
|
hash = "sha256-yfVzZV8G4AUDM8+yS9finzobpOb1PUEPgBWFhEY4nFQ=";
|
|
};
|
|
});
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "zrythm";
|
|
version = "1.0.0-beta.4.9.1";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~alextee";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-U3IUqNbHu20uyWfkTsLOOlUZjcUL4QdHilB3srSsebw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
help2man
|
|
jq
|
|
libaudec
|
|
libxml2
|
|
meson
|
|
ninja
|
|
pandoc
|
|
pkg-config
|
|
python3
|
|
python3.pkgs.sphinx
|
|
sassc
|
|
texi2html
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
alsa-lib
|
|
appstream
|
|
appstream-glib
|
|
bash-completion
|
|
boost
|
|
breeze-icons
|
|
carla-unstable
|
|
chromaprint
|
|
curl
|
|
dbus
|
|
dconf
|
|
faust2lv2
|
|
fftw
|
|
fftwFloat
|
|
flex
|
|
glib
|
|
graphviz
|
|
gtk4
|
|
gtksourceview5
|
|
guile
|
|
json-glib
|
|
kissfft
|
|
libadwaita
|
|
libbacktrace
|
|
libcyaml
|
|
libepoxy
|
|
libgtop
|
|
libjack2
|
|
libpanel
|
|
libpulseaudio
|
|
libsamplerate
|
|
libsass
|
|
libsndfile
|
|
libsoundio
|
|
libyaml
|
|
lilv
|
|
lv2
|
|
pcre
|
|
pcre2
|
|
reproc
|
|
rtaudio
|
|
rtmidi
|
|
rubberband
|
|
serd
|
|
sord
|
|
sox
|
|
sratom
|
|
vamp-plugin-sdk
|
|
xdg-utils
|
|
xxHash
|
|
zix
|
|
zstd
|
|
];
|
|
|
|
patches = [
|
|
# Fix gcc-13 build failure
|
|
(fetchpatch {
|
|
name = "gcc-13.patch";
|
|
url = "https://gitlab.zrythm.org/zrythm/zrythm/-/commit/cbc2b3715b939718479631841f2d9703fb28e6da.diff";
|
|
hash = "sha256-2ZTSaCtSO3yynJVFe5B1AEjWhjRa5YyA26ergAfdL5Y=";
|
|
})
|
|
];
|
|
|
|
# Zrythm uses meson to build, but requires cmake for dependency detection.
|
|
dontUseCmakeConfigure = true;
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
mesonFlags = [
|
|
"-Db_lto=false"
|
|
"-Dcarla=enabled"
|
|
"-Dcarla_binaries_dir=${carla-unstable}/lib/carla"
|
|
"-Ddebug=true"
|
|
"-Dfftw3_threads_separate=false"
|
|
"-Dfftw3_threads_separate_type=library"
|
|
"-Dfftw3f_separate=false"
|
|
"-Dlsp_dsp=disabled"
|
|
"-Dmanpage=true"
|
|
"-Drtaudio=enabled"
|
|
"-Drtmidi=enabled"
|
|
"-Dsdl=enabled"
|
|
# "-Duser_manual=true" # needs sphinx-intl
|
|
];
|
|
|
|
NIX_LDFLAGS = ''
|
|
-lfftw3_threads -lfftw3f_threads
|
|
'';
|
|
|
|
GUILE_AUTO_COMPILE = 0;
|
|
|
|
dontStrip = true;
|
|
|
|
postPatch = ''
|
|
substituteInPlace meson.build \
|
|
--replace "'/usr/lib', '/usr/local/lib', '/opt/homebrew/lib'" "'${fftw}/lib'"
|
|
|
|
chmod +x scripts/meson-post-install.sh
|
|
patchShebangs ext/sh-manpage-completions/run.sh scripts/generic_guile_wrap.sh \
|
|
scripts/meson-post-install.sh tools/check_have_unlimited_memlock.sh
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix GSETTINGS_SCHEMA_DIR : "$out/share/gsettings-schemas/${pname}-${version}/glib-2.0/schemas/"
|
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${breeze-icons}/share"
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.zrythm.org";
|
|
description = "Automated and intuitive digital audio workstation";
|
|
maintainers = with maintainers; [ tshaynik magnetophon yuu ];
|
|
platforms = platforms.linux;
|
|
license = licenses.agpl3Plus;
|
|
};
|
|
}
|