Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
101 lines
2.4 KiB
Nix
101 lines
2.4 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFrom9Front,
|
|
unstableGitUpdater,
|
|
installShellFiles,
|
|
makeWrapper,
|
|
apple-sdk_13,
|
|
xorg,
|
|
pkg-config,
|
|
wayland-scanner,
|
|
pipewire,
|
|
wayland,
|
|
wayland-protocols,
|
|
libxkbcommon,
|
|
libdecor,
|
|
pulseaudio,
|
|
nixosTests,
|
|
withWayland ? false,
|
|
}:
|
|
let
|
|
withXorg = !(withWayland || stdenv.hostPlatform.isDarwin);
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "drawterm";
|
|
version = "0-unstable-2025-09-11";
|
|
|
|
src = fetchFrom9Front {
|
|
owner = "plan9front";
|
|
repo = "drawterm";
|
|
rev = "7523180ec9e5210e28eb0191268066188cdf91ab";
|
|
hash = "sha256-IOZCpNXJcTpqCRsNp8aaP2vORvusLktLtyoQ7gykJB8=";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
strictDeps = true;
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
makeWrapper
|
|
]
|
|
++ lib.optionals withWayland [
|
|
pkg-config
|
|
wayland-scanner
|
|
];
|
|
|
|
buildInputs =
|
|
lib.optionals withWayland [
|
|
pipewire
|
|
wayland
|
|
wayland-protocols
|
|
libxkbcommon
|
|
libdecor
|
|
]
|
|
++ lib.optionals withXorg [
|
|
xorg.libX11
|
|
xorg.libXt
|
|
]
|
|
++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_13;
|
|
|
|
makeFlags =
|
|
lib.optional withWayland "CONF=linux"
|
|
++ lib.optional (!(withWayland || stdenv.hostPlatform.isDarwin)) "CONF=unix"
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"CONF=osx-cocoa"
|
|
"CC=clang"
|
|
];
|
|
|
|
installPhase = ''
|
|
installManPage drawterm.1
|
|
''
|
|
+ lib.optionalString withWayland ''
|
|
install -Dm755 -t $out/bin/ drawterm
|
|
''
|
|
+ lib.optionalString (!(withWayland || stdenv.hostPlatform.isDarwin)) ''
|
|
# wrapping the oss output with pulse seems to be the easiest
|
|
mv drawterm drawterm.bin
|
|
install -Dm755 -t $out/bin/ drawterm.bin
|
|
makeWrapper ${pulseaudio}/bin/padsp $out/bin/drawterm --add-flags $out/bin/drawterm.bin
|
|
''
|
|
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
mkdir -p $out/{Applications,bin}
|
|
mv gui-cocoa/drawterm.app $out/Applications/
|
|
mv drawterm $out/Applications/drawterm.app/
|
|
ln -s $out/Applications/drawterm.app/drawterm $out/bin/
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = unstableGitUpdater { shallowClone = false; };
|
|
tests = nixosTests.drawterm;
|
|
};
|
|
|
|
meta = {
|
|
description = "Connect to Plan 9 CPU servers from other operating systems";
|
|
homepage = "https://drawterm.9front.org/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ moody ];
|
|
platforms = with lib.platforms; linux ++ darwin;
|
|
mainProgram = "drawterm";
|
|
};
|
|
}
|