{ lib, stdenv, fetchFromGitHub, fontconfig, freetype, libX11, libXext, libXt, xorgproto, perl, # For building web manuals which, ed, DarwinTools, # For building on Darwin }: stdenv.mkDerivation rec { pname = "plan9port"; version = "2025-01-29"; src = fetchFromGitHub { owner = "9fans"; repo = pname; rev = "a5d6857a3b912b43c88ef298c28d13d4623f9ef0"; sha256 = "0c23z56zygrsyr96ml7907mpfgx80vnsy99nqr3nmfw1a045mjgv"; }; postPatch = '' substituteInPlace bin/9c \ --replace 'which uniq' '${which}/bin/which uniq' ed -sE INSTALL <LOCAL.config <LOCAL.INSTALL <test.c < #include #include 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/"; 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; [ bbarker ftrvxmtrx kovirobi matthewdargan ylh ]; mainProgram = "9"; platforms = platforms.unix; }; } # TODO: investigate the mouse chording support patch