forked from mirrors/nixpkgs
mup: init at 6.7
This commit is contained in:
parent
63697ed0c2
commit
c8edc08dc4
41
pkgs/applications/audio/mup/default.nix
Normal file
41
pkgs/applications/audio/mup/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ stdenv, fetchurl, autoreconfHook, bison, flex, ghostscript, groff, netpbm
|
||||
, fltk, libXinerama, libXpm, libjpeg
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mup";
|
||||
version = "6.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.arkkra.com/ftp/pub/unix/mup${builtins.replaceStrings ["."] [""] version}src.tar.gz";
|
||||
sha256 = "1y1qknhib1isdjsbv833w3nxzyfljkfgp1gmjwly60l55q60frpk";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook bison flex ghostscript groff netpbm ];
|
||||
|
||||
buildInputs = [ fltk libXinerama libXpm libjpeg ];
|
||||
|
||||
patches = [ ./ghostscript-permit-file-write.patch ];
|
||||
|
||||
postPatch = ''
|
||||
for f in Makefile.am doc/Makefile.am doc/htmldocs/Makefile.am src/mupmate/Preferences.C; do
|
||||
substituteInPlace $f --replace doc/packages doc
|
||||
done
|
||||
substituteInPlace src/mupprnt/mupprnt --replace 'mup ' $out/bin/mup' '
|
||||
substituteInPlace src/mupdisp/genfile.c --replace '"mup"' '"'$out/bin/mup'"'
|
||||
substituteInPlace src/mupmate/Preferences.C \
|
||||
--replace '"mup"' '"'$out/bin/mup'"' \
|
||||
--replace '"gv"' '"xdg-open"' \
|
||||
--replace /usr/share/doc $out/share/doc
|
||||
'';
|
||||
|
||||
enableParallelBuilding = false; # Undeclared dependencies + https://stackoverflow.com/a/19822767/1687334 for prolog.ps.
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.arkkra.com/;
|
||||
description = "Music typesetting program (ASCII to PostScript and MIDI)";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ orivej ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
--- a/src/mup/Makefile.am
|
||||
+++ b/src/mup/Makefile.am
|
||||
@@ -39 +39 @@ fontdata.c: prolog.ps ../../tools/mup/getfontinfo.ps ../../LICENSE
|
||||
- $(GS) -sDEVICE=nullpage -sOutputFile=/dev/null -dQUIET - < ../../tools/mup/getfontinfo.ps | $(SED) -e "/Warning:/d" >> fontdata.c
|
||||
+ $(GS) -sDEVICE=nullpage -sOutputFile=/dev/null -dQUIET --permit-file-write=charnames:fontinit - < ../../tools/mup/getfontinfo.ps | $(SED) -e "/Warning:/d" >> fontdata.c
|
|
@ -20655,6 +20655,8 @@ in
|
|||
else null;
|
||||
};
|
||||
|
||||
mup = callPackage ../applications/audio/mup { };
|
||||
|
||||
# TODO: we should probably merge these 2
|
||||
musescore =
|
||||
if stdenv.isDarwin then
|
||||
|
|
Loading…
Reference in a new issue