9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
42 lines
1.0 KiB
Nix
42 lines
1.0 KiB
Nix
{ lib, stdenv, fetchurl, pkg-config
|
|
, libjack2, gettext, intltool, guile_2_0, lilypond
|
|
, glib, libxml2, librsvg, libsndfile, aubio
|
|
, gtk3, gtksourceview, evince, fluidsynth, rubberband
|
|
, portaudio, portmidi, fftw, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "denemo";
|
|
version = "2.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://ftp.gnu.org/gnu/denemo/denemo-${version}.tar.gz";
|
|
sha256 = "145kq0zfgdadykl3i6na221i4s5wzdrcqq48amzyfarnrqk2rmpd";
|
|
};
|
|
|
|
buildInputs = [
|
|
libjack2 guile_2_0 lilypond glib libxml2 librsvg libsndfile
|
|
aubio gtk3 gtksourceview evince fluidsynth rubberband portaudio fftw portmidi
|
|
];
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix PATH : "${lilypond}/bin"
|
|
)
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook
|
|
intltool
|
|
gettext
|
|
pkg-config
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Music notation and composition software used with lilypond";
|
|
homepage = "http://denemo.org";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.olynch ];
|
|
};
|
|
}
|