2015-08-23 10:17:01 -07:00
|
|
|
{stdenv, fetchgit, which, libX11, libXt, fontconfig
|
2014-04-14 22:22:12 -07:00
|
|
|
, xproto ? null
|
|
|
|
, xextproto ? null
|
2015-09-10 05:50:51 -07:00
|
|
|
, libXext ? null
|
|
|
|
# For building web manuals
|
|
|
|
, perl ? null }:
|
2009-03-23 14:31:30 -07:00
|
|
|
|
2011-01-10 11:41:58 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-23 10:17:01 -07: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";
|
|
|
|
sha256 = "1ffece7c0a5775a8bde6a0618c7ae3da4048449008a19e6623e8e5553f133b4c";
|
|
|
|
};
|
2014-04-14 19:24:36 -07:00
|
|
|
|
|
|
|
patches = [ ./fontsrv.patch ];
|
2015-01-14 08:59:34 -08:00
|
|
|
postPatch =
|
|
|
|
''
|
|
|
|
substituteInPlace src/cmd/acme/acme.c \
|
|
|
|
--replace /lib/font/bit $out/plan9/font
|
|
|
|
'';
|
2014-04-14 19:24:36 -07:00
|
|
|
|
2009-03-23 14:31:30 -07:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
2014-12-06 07:18:30 -08:00
|
|
|
NIX_LDFLAGS="-lgcc_s";
|
2015-09-10 05:50:51 -07:00
|
|
|
buildInputs = stdenv.lib.optionals
|
|
|
|
(!stdenv.isDarwin)
|
|
|
|
[ which
|
|
|
|
perl
|
|
|
|
libX11
|
|
|
|
fontconfig
|
|
|
|
xproto
|
|
|
|
libXt
|
|
|
|
xextproto
|
|
|
|
libXext
|
|
|
|
];
|
2009-03-23 14:31:30 -07:00
|
|
|
|
2014-08-14 15:11:28 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2009-03-23 14:31:30 -07:00
|
|
|
homepage = "http://swtch.com/plan9port/";
|
|
|
|
description = "Plan 9 from User Space";
|
2014-08-14 17:06:45 -07:00
|
|
|
license = licenses.lpl-102;
|
2015-08-23 10:17:01 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ftrvxmtrx kovirobi ];
|
2014-08-14 15:11:28 -07:00
|
|
|
platforms = platforms.unix;
|
2009-03-23 14:31:30 -07:00
|
|
|
};
|
2014-07-30 21:38:00 -07:00
|
|
|
|
2015-10-05 02:22:48 -07:00
|
|
|
libXt_dev = libXt.dev;
|
2015-10-05 03:23:02 -07:00
|
|
|
fontconfig_dev = fontconfig.dev;
|
2009-03-23 14:31:30 -07:00
|
|
|
}
|