nixpkgs/pkgs/tools/system/plan9port/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

125 lines
3.1 KiB
Nix
Raw Normal View History

2022-07-21 15:22:08 +00:00
{ lib, stdenv, fetchFromGitHub
, fontconfig, freetype, libX11, libXext, libXt, xorgproto
, Carbon, Cocoa, IOKit, Metal, QuartzCore, DarwinTools
, perl # For building web manuals
2022-07-29 16:27:57 +00:00
, which, ed
2016-08-31 04:55:40 +00:00
}:
2022-07-21 15:22:08 +00:00
stdenv.mkDerivation rec {
2019-03-17 12:46:05 +00:00
pname = "plan9port";
version = "2022-09-12";
2022-07-21 15:22:08 +00:00
src = fetchFromGitHub {
2019-03-17 12:46:05 +00:00
owner = "9fans";
2022-07-21 15:22:08 +00:00
repo = pname;
rev = "ffbdd1aa20c8a20a8e9dcd3cec644b6dfa3c6acb";
hash = "sha256-Lq5B4VYUetkHwhFX2EaLr33wR1aLIiVn8OBobxjFt7I=";
};
2016-08-31 04:55:40 +00:00
postPatch = ''
substituteInPlace bin/9c \
--replace 'which uniq' '${which}/bin/which uniq'
2022-07-29 16:27:57 +00:00
ed -sE INSTALL <<EOF
# get /bin:/usr/bin out of PATH
/^PATH=[^ ]*/s,,PATH=\$PATH:\$PLAN9/bin,
# no xcbuild nonsense
/^if.* = Darwin/+;/^fi/-c
${"\t"}export NPROC=$NIX_BUILD_CORES
.
# remove absolute include paths from fontsrv test
/cc -o a.out -c -I.*freetype2/;/x11.c/j
s/(-Iinclude).*-I[^ ]*/\1/
wq
EOF
2016-08-31 04:55:40 +00:00
'';
2022-07-29 16:27:57 +00:00
nativeBuildInputs = [ ed ];
buildInputs = [ perl which ] ++ (if !stdenv.isDarwin then [
fontconfig freetype # fontsrv uses these
libX11 libXext libXt xorgproto
2022-07-21 15:22:08 +00:00
] else [
2022-07-29 16:27:57 +00:00
Carbon Cocoa IOKit Metal QuartzCore
2022-07-21 15:22:08 +00:00
DarwinTools
]);
2022-07-29 16:27:57 +00:00
configurePhase = ''
runHook preConfigure
cat >LOCAL.config <<EOF
CC9='$(command -v $CC)'
CFLAGS='$NIX_CFLAGS_COMPILE'
LDFLAGS='$(for f in $NIX_LDFLAGS; do echo "-Wl,$f"; done | xargs echo)'
${lib.optionalString (!stdenv.isDarwin) "X11='${libXt.dev}/include'"}
EOF
# make '9' available in the path so there's some way to find out $PLAN9
cat >LOCAL.INSTALL <<EOF
#!$out/plan9/bin/rc
mkdir $out/bin
ln -s $out/plan9/bin/9 $out/bin/
EOF
chmod +x LOCAL.INSTALL
# now, not in fixupPhase, so ./INSTALL works
patchShebangs .
runHook postConfigure
'';
buildPhase = ''
runHook preBuild
PLAN9_TARGET=$out/plan9 ./INSTALL -b
2022-07-29 16:27:57 +00:00
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir $out
cp -r . $out/plan9
cd $out/plan9
./INSTALL -c
runHook postInstall
'';
dontPatchShebangs = true;
2019-03-17 12:46:05 +00: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
'';
meta = with lib; {
homepage = "https://9fans.github.io/plan9port/";
2019-03-17 12:46:05 +00:00
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.mit;
maintainers = with maintainers; [
2022-07-29 16:27:57 +00:00
AndersonTorres bbarker ehmry ftrvxmtrx kovirobi ylh
];
mainProgram = "9";
2020-07-28 11:15:23 +00:00
platforms = platforms.unix;
2021-11-20 05:22:09 +00:00
# TODO: revisit this when the sdk situation on x86_64-darwin changes
broken = stdenv.isDarwin && stdenv.isx86_64;
2019-03-17 12:46:05 +00:00
};
}
2019-03-17 12:46:05 +00:00
# TODO: investigate the mouse chording support patch