nixpkgs/pkgs/tools/system/plan9port/default.nix
Kovacsics Robert (NixOS-SSD2) d6e1ee5651 plan9port: fix interpreter paths, add perl
Fixing interpreter paths was done by exporting PLAN9_TARGET, which
INSTALL looks at. Giving $PLAN9 to INSTALL does not achieve this, as
INSTALL only looks at its first argument so I removed the other
arguments to avoid confusion.

Perl is an optional dependency for a script that adds URLs to man pages,
I have added it to get fewer errors during install.
2015-09-10 13:50:51 +01:00

53 lines
1.3 KiB
Nix

{stdenv, fetchgit, which, libX11, libXt, fontconfig
, xproto ? null
, xextproto ? null
, libXext ? null
# For building web manuals
, perl ? null }:
stdenv.mkDerivation rec {
name = "plan9port-2015-06-29";
src = fetchgit {
# Latest, same as on github, google code is old
url = "https://plan9port.googlesource.com/plan9";
rev = "71de840";
sha256 = "1ffece7c0a5775a8bde6a0618c7ae3da4048449008a19e6623e8e5553f133b4c";
};
patches = [ ./fontsrv.patch ];
postPatch =
''
substituteInPlace src/cmd/acme/acme.c \
--replace /lib/font/bit $out/plan9/font
'';
builder = ./builder.sh;
NIX_LDFLAGS="-lgcc_s";
buildInputs = stdenv.lib.optionals
(!stdenv.isDarwin)
[ which
perl
libX11
fontconfig
xproto
libXt
xextproto
libXext
];
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = "http://swtch.com/plan9port/";
description = "Plan 9 from User Space";
license = licenses.lpl-102;
maintainers = with stdenv.lib.maintainers; [ ftrvxmtrx kovirobi ];
platforms = platforms.unix;
};
inherit libXt;
inherit fontconfig;
}