Merge pull request #203179 from urandom2/emptty

Fixes https://github.com/NixOS/nixpkgs/issues/158258
This commit is contained in:
Sandro 2022-12-12 14:11:48 +01:00 committed by GitHub
commit 0fee97d587
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ buildGoModule
, fetchFromGitHub
, lib
, libX11
, pam
, stdenv
}:
buildGoModule rec {
pname = "emptty";
version = "0.9.0";
src = fetchFromGitHub {
owner = "tvrzna";
repo = pname;
rev = "v${version}";
hash = "sha256-iT7wdxHC+/3fvBbSrHHuqNYWiqwL48NYzFmtmgVaFik=";
};
buildInputs = [ pam libX11 ];
vendorHash = "sha256-tviPb05puHvBdDkSsRrBExUVxQy+DzmkjB+W9W2CG4M=";
meta = with lib; {
description = "Dead simple CLI Display Manager on TTY";
homepage = "https://github.com/tvrzna/emptty";
license = licenses.mit;
maintainers = with maintainers; [ urandom ];
# many undefined functions
broken = stdenv.isDarwin;
};
}

View file

@ -28373,6 +28373,8 @@ with pkgs;
inherit (gnome) empathy;
emptty = callPackage ../applications/display-managers/emptty {};
endeavour = callPackage ../applications/office/endeavour { };
enhanced-ctorrent = callPackage ../applications/networking/p2p/enhanced-ctorrent { };