2016-08-31 06:55:40 +02:00
|
|
|
{ stdenv, fetchgit, which, libX11, libXt, fontconfig, freetype
|
2014-04-15 07:22:12 +02:00
|
|
|
, xproto ? null
|
|
|
|
, xextproto ? null
|
2015-09-10 14:50:51 +02:00
|
|
|
, libXext ? null
|
|
|
|
# For building web manuals
|
2016-08-31 06:55:40 +02:00
|
|
|
, perl ? null
|
|
|
|
, samChordingSupport ? true #from 9front
|
|
|
|
}:
|
2009-03-23 22:31:30 +01:00
|
|
|
|
2011-01-10 20:41:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-09-04 14:52:34 +02:00
|
|
|
name = "plan9port-2016-04-18";
|
2015-08-23 19:17:01 +02:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
# Latest, same as on github, google code is old
|
|
|
|
url = "https://plan9port.googlesource.com/plan9";
|
2016-09-04 14:52:34 +02:00
|
|
|
rev = "35d43924484b88b9816e40d2f6bff4547f3eec47";
|
|
|
|
sha256 = "1dvg580rkav09fra2gnrzh271b4fw6bgqfv4ib7ds5k3j55ahcdc";
|
2015-08-23 19:17:01 +02:00
|
|
|
};
|
2014-04-15 04:24:36 +02:00
|
|
|
|
2016-08-31 06:55:40 +02:00
|
|
|
patches = [
|
|
|
|
./fontsrv.patch
|
|
|
|
] ++ stdenv.lib.optionals samChordingSupport [ ./sam_chord_9front.patch ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
#hardcoded path
|
|
|
|
substituteInPlace src/cmd/acme/acme.c \
|
|
|
|
--replace /lib/font/bit $out/plan9/font
|
|
|
|
#deprecated flags
|
|
|
|
find . -type f \
|
|
|
|
-exec sed -i -e 's/_SVID_SOURCE/_DEFAULT_SOURCE/g' {} \; \
|
|
|
|
-exec sed -i -e 's/_BSD_SOURCE/_DEFAULT_SOURCE/g' {} \;
|
2016-09-04 14:52:34 +02:00
|
|
|
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
|
|
|
|
#add missing ctrl+c\z\x\v keybind for non-Darwin
|
|
|
|
substituteInPlace src/cmd/acme/text.c \
|
|
|
|
--replace "case Kcmd+'c':" "case 0x03: case Kcmd+'c':" \
|
|
|
|
--replace "case Kcmd+'z':" "case 0x1a: case Kcmd+'z':" \
|
|
|
|
--replace "case Kcmd+'x':" "case 0x18: case Kcmd+'x':" \
|
|
|
|
--replace "case Kcmd+'v':" "case 0x16: case Kcmd+'v':"
|
2016-08-31 06:55:40 +02:00
|
|
|
'';
|
2014-04-15 04:24:36 +02:00
|
|
|
|
2009-03-23 22:31:30 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
2014-12-06 16:18:30 +01:00
|
|
|
NIX_LDFLAGS="-lgcc_s";
|
2016-09-04 14:52:34 +02:00
|
|
|
buildInputs = stdenv.lib.optionals (!stdenv.isDarwin) [
|
|
|
|
which
|
|
|
|
perl
|
|
|
|
libX11
|
|
|
|
fontconfig
|
|
|
|
xproto
|
|
|
|
libXt
|
|
|
|
xextproto
|
|
|
|
libXext
|
|
|
|
freetype #fontsrv wants ft2build.h. provides system fonts for acme and sam.
|
|
|
|
];
|
2009-03-23 22:31:30 +01:00
|
|
|
|
2014-08-15 00:11:28 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://swtch.com/plan9port/;
|
2009-03-23 22:31:30 +01:00
|
|
|
description = "Plan 9 from User Space";
|
2014-08-15 02:06:45 +02:00
|
|
|
license = licenses.lpl-102;
|
2016-09-04 14:52:34 +02:00
|
|
|
maintainers = with maintainers; [ ftrvxmtrx kovirobi ];
|
2014-08-15 00:11:28 +02:00
|
|
|
platforms = platforms.unix;
|
2009-03-23 22:31:30 +01:00
|
|
|
};
|
2014-07-31 06:38:00 +02:00
|
|
|
|
2015-10-05 11:22:48 +02:00
|
|
|
libXt_dev = libXt.dev;
|
2015-10-05 12:23:02 +02:00
|
|
|
fontconfig_dev = fontconfig.dev;
|
2016-08-31 06:55:40 +02:00
|
|
|
freetype_dev = freetype.dev;
|
2009-03-23 22:31:30 +01:00
|
|
|
}
|