emptty: init at 0.9.0

Fixes #158258
This commit is contained in:
Colin Arnott 2022-11-27 02:36:27 +00:00
parent 5923e69233
commit d32346df9a
No known key found for this signature in database
GPG key ID: 0447A663F7F3E236
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

@ -28239,6 +28239,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 { };