mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, autoreconfHook, bison, flex, ghostscript, groff, netpbm
|
|
, fltk, libXinerama, libXpm, libjpeg
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mup";
|
|
version = "6.8";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.arkkra.com/ftp/pub/unix/mup${builtins.replaceStrings ["."] [""] version}src.tar.gz";
|
|
sha256 = "06bv5nyl8rcibyb83zzrfdq6x6f93g3rgnv47i5gsjcaw5w6l31y";
|
|
};
|
|
|
|
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 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;
|
|
};
|
|
}
|