d1f2d75d20
drawterm uses an oss audio backend by default for CONF=unix. The easiest way I've seen to get this working for most systems is to wrap it with padsp.
63 lines
1.6 KiB
Nix
63 lines
1.6 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchgit
|
|
, installShellFiles
|
|
, makeWrapper
|
|
, xorg
|
|
, pkg-config
|
|
, wayland-scanner
|
|
, pipewire
|
|
, wayland
|
|
, wayland-protocols
|
|
, libxkbcommon
|
|
, wlr-protocols
|
|
, pulseaudio
|
|
, config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "drawterm";
|
|
version = "unstable-2023-06-27";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.9front.org/plan9front/drawterm";
|
|
rev = "36debf46ac184a22c6936345d22e4cfad995948c";
|
|
sha256 = "ebqw1jqeRC0FWeUIO/HaEovuwzU6+B48TjZbVJXByvA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ] ++ {
|
|
linux = [ pkg-config wayland-scanner ];
|
|
unix = [ makeWrapper ];
|
|
}."${config}" or (throw "unsupported CONF");
|
|
|
|
buildInputs = {
|
|
linux = [ pipewire wayland wayland-protocols libxkbcommon wlr-protocols ];
|
|
unix = [ xorg.libX11 xorg.libXt ];
|
|
}."${config}" or (throw "unsupported CONF");
|
|
|
|
# TODO: macos
|
|
makeFlags = [ "CONF=${config}" ];
|
|
|
|
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
|
|
'';
|
|
}."${config}" or (throw "unsupported CONF") + ''
|
|
installManPage drawterm.1
|
|
'';
|
|
|
|
|
|
meta = with lib; {
|
|
description = "Connect to Plan 9 CPU servers from other operating systems.";
|
|
homepage = "https://drawterm.9front.org/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ luc65r moody ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|