2015-08-23 17:17:01 +00:00
|
|
|
{stdenv, fetchgit, which, libX11, libXt, fontconfig
|
2014-04-15 05:22:12 +00:00
|
|
|
, xproto ? null
|
|
|
|
, xextproto ? null
|
2015-09-10 12:50:51 +00:00
|
|
|
, libXext ? null
|
|
|
|
# For building web manuals
|
|
|
|
, perl ? null }:
|
2009-03-23 21:31:30 +00:00
|
|
|
|
2011-01-10 19:41:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-23 17:17:01 +00:00
|
|
|
name = "plan9port-2015-06-29";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
# Latest, same as on github, google code is old
|
|
|
|
url = "https://plan9port.googlesource.com/plan9";
|
|
|
|
rev = "71de840";
|
2016-06-02 11:26:44 +00:00
|
|
|
sha256 = "002ma7h7z3wii520dhijikwdc679hpwn0jv5a0c8g299drvzq2wx";
|
2015-08-23 17:17:01 +00:00
|
|
|
};
|
2014-04-15 02:24:36 +00:00
|
|
|
|
|
|
|
patches = [ ./fontsrv.patch ];
|
2015-01-14 16:59:34 +00:00
|
|
|
postPatch =
|
|
|
|
''
|
|
|
|
substituteInPlace src/cmd/acme/acme.c \
|
|
|
|
--replace /lib/font/bit $out/plan9/font
|
|
|
|
'';
|
2014-04-15 02:24:36 +00:00
|
|
|
|
2009-03-23 21:31:30 +00:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
2014-12-06 15:18:30 +00:00
|
|
|
NIX_LDFLAGS="-lgcc_s";
|
2015-09-10 12:50:51 +00:00
|
|
|
buildInputs = stdenv.lib.optionals
|
|
|
|
(!stdenv.isDarwin)
|
|
|
|
[ which
|
|
|
|
perl
|
|
|
|
libX11
|
|
|
|
fontconfig
|
|
|
|
xproto
|
|
|
|
libXt
|
|
|
|
xextproto
|
|
|
|
libXext
|
|
|
|
];
|
2009-03-23 21:31:30 +00:00
|
|
|
|
2014-08-14 22:11:28 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2009-03-23 21:31:30 +00:00
|
|
|
homepage = "http://swtch.com/plan9port/";
|
|
|
|
description = "Plan 9 from User Space";
|
2014-08-15 00:06:45 +00:00
|
|
|
license = licenses.lpl-102;
|
2015-08-23 17:17:01 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ftrvxmtrx kovirobi ];
|
2014-08-14 22:11:28 +00:00
|
|
|
platforms = platforms.unix;
|
2009-03-23 21:31:30 +00:00
|
|
|
};
|
2014-07-31 04:38:00 +00:00
|
|
|
|
2015-10-05 09:22:48 +00:00
|
|
|
libXt_dev = libXt.dev;
|
2015-10-05 10:23:02 +00:00
|
|
|
fontconfig_dev = fontconfig.dev;
|
2009-03-23 21:31:30 +00:00
|
|
|
}
|