2019-03-17 12:46:05 +00:00
|
|
|
{ stdenv, fetchFromGitHub, which, libX11, libXt, fontconfig, freetype
|
2018-12-31 03:40:47 +00:00
|
|
|
, xorgproto ? null
|
2015-09-10 13:50:51 +01:00
|
|
|
, libXext ? null
|
2018-09-20 22:36:21 +01:00
|
|
|
, zlib ? null
|
2019-03-17 12:46:05 +00:00
|
|
|
, perl ? null # For building web manuals
|
2016-08-31 05:55:40 +01:00
|
|
|
}:
|
2009-03-23 21:31:30 +00:00
|
|
|
|
2011-01-10 19:41:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-17 12:46:05 +00:00
|
|
|
pname = "plan9port";
|
|
|
|
version = "2019-02-25";
|
|
|
|
name = "${pname}-${version}";
|
2015-08-23 18:17:01 +01:00
|
|
|
|
2019-03-17 12:46:05 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "9fans";
|
|
|
|
repo = "plan9port";
|
|
|
|
rev = "047fd921744f39a82a86d9370e03f7af511e6e84";
|
|
|
|
sha256 = "1lp17948q7vpl8rc2bf5a45bc8jqyj0s3zffmks9r25ai42vgb43";
|
2015-08-23 18:17:01 +01:00
|
|
|
};
|
2014-04-15 03:24:36 +01:00
|
|
|
|
2016-08-31 05:55:40 +01:00
|
|
|
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 13:52:34 +01: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 05:55:40 +01:00
|
|
|
'';
|
2014-04-15 03:24:36 +01:00
|
|
|
|
2019-06-11 16:48:57 +01:00
|
|
|
buildInputs = [
|
2019-03-17 12:46:05 +00:00
|
|
|
which perl libX11 fontconfig xorgproto libXt libXext
|
|
|
|
freetype # fontsrv wants ft2build.h provides system fonts for acme and sam.
|
2016-09-04 13:52:34 +01:00
|
|
|
];
|
2009-03-23 21:31:30 +00:00
|
|
|
|
2019-03-17 12:46:05 +00:00
|
|
|
builder = ./builder.sh;
|
2014-08-14 23:11:28 +01:00
|
|
|
|
2018-09-20 22:36:21 +01:00
|
|
|
libX11_dev = libX11.dev;
|
2015-10-05 10:22:48 +01:00
|
|
|
libXt_dev = libXt.dev;
|
2018-09-20 22:36:21 +01:00
|
|
|
libXext_dev = libXext.dev;
|
2015-10-05 11:23:02 +01:00
|
|
|
fontconfig_dev = fontconfig.dev;
|
2016-08-31 05:55:40 +01:00
|
|
|
freetype_dev = freetype.dev;
|
2018-09-20 22:36:21 +01:00
|
|
|
zlib_dev = zlib.dev;
|
2019-03-17 12:46:05 +00:00
|
|
|
|
2018-12-31 03:40:47 +00:00
|
|
|
xorgproto_exp = xorgproto;
|
2018-09-20 22:36:21 +01:00
|
|
|
libX11_exp = libX11;
|
|
|
|
libXt_exp = libXt;
|
|
|
|
libXext_exp = libXext;
|
|
|
|
freetype_exp = freetype;
|
|
|
|
zlib_exp = zlib;
|
|
|
|
|
|
|
|
fontconfig_lib = fontconfig.lib;
|
2019-03-17 12:46:05 +00:00
|
|
|
|
|
|
|
NIX_LDFLAGS="-lgcc_s";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-06-11 16:48:57 +01:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
$out/bin/9 rc -c 'echo rc is working.'
|
|
|
|
|
|
|
|
# 9l can find and use its libs
|
|
|
|
cd $TMP
|
|
|
|
cat >test.c <<EOF
|
|
|
|
#include <u.h>
|
|
|
|
#include <libc.h>
|
|
|
|
#include <thread.h>
|
|
|
|
void
|
|
|
|
threadmain(int argc, char **argv)
|
|
|
|
{
|
|
|
|
threadexitsall(nil);
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
$out/bin/9 9c -o test.o test.c
|
|
|
|
$out/bin/9 9l -o test test.o
|
|
|
|
./test
|
|
|
|
'';
|
|
|
|
|
2019-03-17 12:46:05 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://9fans.github.io/plan9port/;
|
|
|
|
description = "Plan 9 from User Space";
|
|
|
|
longDescription = ''
|
|
|
|
Plan 9 from User Space (aka plan9port) is a port of many Plan 9 programs
|
|
|
|
from their native Plan 9 environment to Unix-like operating systems.
|
|
|
|
'';
|
|
|
|
license = licenses.lpl-102;
|
|
|
|
maintainers = with maintainers; [ AndersonTorres bbarker
|
|
|
|
ftrvxmtrx kovirobi ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2009-03-23 21:31:30 +00:00
|
|
|
}
|
2019-03-17 12:46:05 +00:00
|
|
|
# TODO: investigate the mouse chording support patch
|