python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / admin / drawterm / default.nix
blobf694cb935b4226bec6ac7ad765371ecc3ff019b4
1 { stdenv
2 , lib
3 , fetchgit
4 , xorg
5 }:
7 stdenv.mkDerivation rec {
8   pname = "drawterm";
9   version = "unstable-2021-10-02";
11   src = fetchgit {
12     url = "git://git.9front.org/plan9front/drawterm";
13     rev = "c6f547e1a46ebbf7a290427fe3a0b66932d671a0";
14     sha256 = "09v2vk5s23q0islfz273pqy696zhzh3gqi25hadr54lif0511wsl";
15   };
17   buildInputs = [
18     xorg.libX11
19     xorg.libXt
20   ];
22   # TODO: macos
23   makeFlags = [ "CONF=unix" ];
25   installPhase = ''
26     install -Dm755 -t $out/bin/ drawterm
27     install -Dm644 -t $out/man/man1/ drawterm.1
28   '';
30   meta = with lib; {
31     description = "Connect to Plan9 CPU servers from other operating systems.";
32     homepage = "https://drawterm.9front.org/";
33     license = licenses.mit;
34     maintainers = with maintainers; [ luc65r ];
35     platforms = platforms.linux;
36   };