2024-01-13 08:15:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, pkg-config
|
|
|
|
, libjack2, gettext, intltool, guile, lilypond
|
2020-04-24 23:36:52 +00:00
|
|
|
, glib, libxml2, librsvg, libsndfile, aubio
|
|
|
|
, gtk3, gtksourceview, evince, fluidsynth, rubberband
|
2024-01-13 08:15:51 +00:00
|
|
|
, autoreconfHook, gtk-doc
|
2020-04-24 23:36:52 +00:00
|
|
|
, portaudio, portmidi, fftw, wrapGAppsHook }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "denemo";
|
2022-04-27 09:35:20 +00:00
|
|
|
version = "2.6.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://ftp.gnu.org/gnu/denemo/denemo-${version}.tar.gz";
|
2022-04-27 09:35:20 +00:00
|
|
|
sha256 = "sha256-S+WXDGmEf5fx+HYnXJdE5QNOfJg7EqEEX7IMI2SUtV0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "allow-guile-3.patch";
|
|
|
|
url = "https://git.savannah.gnu.org/cgit/denemo.git/patch/?id=9de1c65e56a021925af532bb55336b0ce86d3084";
|
|
|
|
postFetch = ''
|
|
|
|
substituteInPlace $out \
|
|
|
|
--replace "2.6.8" "2.6.0" \
|
|
|
|
--replace "2.6.9" "2.6.0"
|
|
|
|
'';
|
|
|
|
hash = "sha256-Jj33k/KgvZgKG43MuLgjb4A2KNkm/z9ytzGKcXMAOI4=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [
|
2024-01-13 08:15:51 +00:00
|
|
|
libjack2 guile lilypond glib libxml2 librsvg libsndfile
|
2020-04-24 23:36:52 +00:00
|
|
|
aubio gtk3 gtksourceview evince fluidsynth rubberband portaudio fftw portmidi
|
|
|
|
];
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(
|
|
|
|
--prefix PATH : "${lilypond}/bin"
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2024-01-13 08:15:51 +00:00
|
|
|
autoreconfHook
|
|
|
|
gtk-doc
|
2020-04-24 23:36:52 +00:00
|
|
|
wrapGAppsHook
|
|
|
|
intltool
|
|
|
|
gettext
|
2021-02-05 17:12:51 +00:00
|
|
|
pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Music notation and composition software used with lilypond";
|
|
|
|
homepage = "http://denemo.org";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.olynch ];
|
|
|
|
};
|
|
|
|
}
|