2021-08-12 20:03:43 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2023-07-17 03:50:37 +00:00
|
|
|
, fetchFrom9Front
|
|
|
|
, unstableGitUpdater
|
2023-06-27 17:57:29 +00:00
|
|
|
, installShellFiles
|
2023-06-28 21:53:34 +00:00
|
|
|
, makeWrapper
|
2021-08-12 20:03:43 +00:00
|
|
|
, xorg
|
2023-06-27 17:57:29 +00:00
|
|
|
, pkg-config
|
|
|
|
, wayland-scanner
|
|
|
|
, pipewire
|
|
|
|
, wayland
|
|
|
|
, wayland-protocols
|
|
|
|
, libxkbcommon
|
|
|
|
, wlr-protocols
|
2023-06-28 21:53:34 +00:00
|
|
|
, pulseaudio
|
2023-06-27 17:57:29 +00:00
|
|
|
, config
|
2023-12-23 21:53:20 +00:00
|
|
|
, nixosTests
|
2021-08-12 20:03:43 +00:00
|
|
|
}:
|
|
|
|
|
2023-07-09 19:05:42 +00:00
|
|
|
stdenv.mkDerivation {
|
2021-08-12 20:03:43 +00:00
|
|
|
pname = "drawterm";
|
2024-09-20 12:20:37 +00:00
|
|
|
version = "0-unstable-2024-09-09";
|
2021-08-12 20:03:43 +00:00
|
|
|
|
2023-07-17 03:50:37 +00:00
|
|
|
src = fetchFrom9Front {
|
|
|
|
owner = "plan9front";
|
|
|
|
repo = "drawterm";
|
2024-09-20 12:20:37 +00:00
|
|
|
rev = "789b8fe40e156ad0252230b13dd4ada96f3eed8b";
|
|
|
|
hash = "sha256-M/kTV13MCcWycpJ2+jhXBTIoQuXakqO2llEL3PEjI/g=";
|
2021-08-12 20:03:43 +00:00
|
|
|
};
|
|
|
|
|
2023-07-09 19:05:42 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
strictDeps = true;
|
2023-06-27 17:57:29 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ] ++ {
|
|
|
|
linux = [ pkg-config wayland-scanner ];
|
2023-06-28 21:53:34 +00:00
|
|
|
unix = [ makeWrapper ];
|
2023-06-27 17:57:29 +00:00
|
|
|
}."${config}" or (throw "unsupported CONF");
|
|
|
|
|
|
|
|
buildInputs = {
|
|
|
|
linux = [ pipewire wayland wayland-protocols libxkbcommon wlr-protocols ];
|
|
|
|
unix = [ xorg.libX11 xorg.libXt ];
|
|
|
|
}."${config}" or (throw "unsupported CONF");
|
2021-08-12 20:03:43 +00:00
|
|
|
|
|
|
|
# TODO: macos
|
2023-06-27 17:57:29 +00:00
|
|
|
makeFlags = [ "CONF=${config}" ];
|
2021-08-12 20:03:43 +00:00
|
|
|
|
2023-06-28 21:53:34 +00:00
|
|
|
installPhase = {
|
|
|
|
linux = ''
|
|
|
|
install -Dm755 -t $out/bin/ drawterm
|
|
|
|
'';
|
|
|
|
unix = ''
|
|
|
|
# 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
|
2023-07-09 19:05:42 +00:00
|
|
|
'';
|
|
|
|
}."${config}" or (throw "unsupported CONF") + ''
|
|
|
|
installManPage drawterm.1
|
2021-08-12 20:03:43 +00:00
|
|
|
'';
|
|
|
|
|
2023-12-23 21:53:20 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = unstableGitUpdater { shallowClone = false; };
|
|
|
|
tests = nixosTests.drawterm;
|
|
|
|
};
|
2023-07-17 03:50:37 +00:00
|
|
|
|
2021-08-12 20:03:43 +00:00
|
|
|
meta = with lib; {
|
2024-01-08 05:29:45 +00:00
|
|
|
description = "Connect to Plan 9 CPU servers from other operating systems";
|
2021-08-12 20:03:43 +00:00
|
|
|
homepage = "https://drawterm.9front.org/";
|
|
|
|
license = licenses.mit;
|
2023-06-27 17:57:29 +00:00
|
|
|
maintainers = with maintainers; [ luc65r moody ];
|
2021-08-12 20:03:43 +00:00
|
|
|
platforms = platforms.linux;
|
2023-09-05 20:06:33 +00:00
|
|
|
mainProgram = "drawterm";
|
2021-08-12 20:03:43 +00:00
|
|
|
};
|
|
|
|
}
|