drawterm: init at unstable-2021-08-02
This commit is contained in:
parent
9d865ef9f6
commit
78a389cf5a
2 changed files with 39 additions and 0 deletions
37
pkgs/tools/admin/drawterm/default.nix
Normal file
37
pkgs/tools/admin/drawterm/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchgit
|
||||||
|
, xorg
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "drawterm";
|
||||||
|
version = "unstable-2021-08-02";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "git://git.9front.org/plan9front/drawterm";
|
||||||
|
rev = "a130d441722ac3f759d2d83b98eb6aef7e84f97e";
|
||||||
|
sha256 = "R+W1XMqQqCrMwgX9lHRhxJPG6ZOvtQrU6HUsKfvfrBQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libXt
|
||||||
|
];
|
||||||
|
|
||||||
|
# TODO: macos
|
||||||
|
makeFlags = [ "CONF=unix" ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -Dm755 -t $out/bin/ drawterm
|
||||||
|
install -Dm644 -t $out/man/man1/ drawterm.1
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Connect to Plan9 CPU servers from other operating systems.";
|
||||||
|
homepage = "https://drawterm.9front.org/";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ luc65r ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -23775,6 +23775,8 @@ in
|
||||||
buildServerGui = false;
|
buildServerGui = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
drawterm = callPackage ../tools/admin/drawterm { };
|
||||||
|
|
||||||
droopy = python3Packages.callPackage ../applications/networking/droopy { };
|
droopy = python3Packages.callPackage ../applications/networking/droopy { };
|
||||||
|
|
||||||
drumgizmo = callPackage ../applications/audio/drumgizmo { };
|
drumgizmo = callPackage ../applications/audio/drumgizmo { };
|
||||||
|
|
Loading…
Reference in a new issue