2015-08-23 18:17:01 +01:00
|
|
|
{stdenv, fetchgit, which, libX11, libXt, fontconfig
|
2014-04-15 06:22:12 +01:00
|
|
|
, xproto ? null
|
|
|
|
, xextproto ? null
|
2015-09-10 13:50:51 +01: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 18:17:01 +01: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 12:26:44 +01:00
|
|
|
sha256 = "002ma7h7z3wii520dhijikwdc679hpwn0jv5a0c8g299drvzq2wx";
|
2015-08-23 18:17:01 +01:00
|
|
|
};
|
2014-04-15 03:24:36 +01: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 03:24:36 +01: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 13:50:51 +01: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 23:11:28 +01: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 01:06:45 +01:00
|
|
|
license = licenses.lpl-102;
|
2015-08-23 18:17:01 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ftrvxmtrx kovirobi ];
|
2014-08-14 23:11:28 +01:00
|
|
|
platforms = platforms.unix;
|
2009-03-23 21:31:30 +00:00
|
|
|
};
|
2014-07-31 05:38:00 +01:00
|
|
|
|
2015-10-05 10:22:48 +01:00
|
|
|
libXt_dev = libXt.dev;
|
2015-10-05 11:23:02 +01:00
|
|
|
fontconfig_dev = fontconfig.dev;
|
2009-03-23 21:31:30 +00:00
|
|
|
}
|