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
|
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";
|
2023-06-27 17:55:56 +00:00
|
|
|
version = "unstable-2023-06-27";
|
2021-08-12 20:03:43 +00:00
|
|
|
|
2023-07-17 03:50:37 +00:00
|
|
|
src = fetchFrom9Front {
|
|
|
|
owner = "plan9front";
|
|
|
|
repo = "drawterm";
|
2023-06-27 17:55:56 +00:00
|
|
|
rev = "36debf46ac184a22c6936345d22e4cfad995948c";
|
2023-07-17 03:50:37 +00:00
|
|
|
hash = "sha256-ebqw1jqeRC0FWeUIO/HaEovuwzU6+B48TjZbVJXByvA=";
|
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-07-17 03:50:37 +00:00
|
|
|
passthru.updateScript = unstableGitUpdater { shallowClone = false; };
|
|
|
|
|
2021-08-12 20:03:43 +00:00
|
|
|
meta = with lib; {
|
2023-06-27 17:57:29 +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;
|
|
|
|
};
|
|
|
|
}
|