biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / display-managers / emptty / default.nix
blobb4a55ece76757316f6d09b35f3f16461fc43a409
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 , libX11
5 , pam
6 , stdenv
7 }:
9 buildGoModule rec {
10   pname = "emptty";
11   version = "0.13.0";
13   src = fetchFromGitHub {
14     owner = "tvrzna";
15     repo = pname;
16     rev = "v${version}";
17     hash = "sha256-xZfR4sn20fDaTNAxuxVflpr+8AFg5Z7vesO7P8Jxw6A=";
18   };
20   buildInputs = [ pam libX11 ];
22   vendorHash = "sha256-PLyemAUcCz9H7+nAxftki3G7rQoEeyPzY3YUEj2RFn4=";
24   meta = with lib; {
25     description = "Dead simple CLI Display Manager on TTY";
26     homepage = "https://github.com/tvrzna/emptty";
27     license = licenses.mit;
28     maintainers = with maintainers; [ urandom ];
29     # many undefined functions
30     broken = stdenv.hostPlatform.isDarwin;
31     mainProgram = "emptty";
32   };