mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
parent
5923e69233
commit
d32346df9a
2 changed files with 34 additions and 0 deletions
32
pkgs/applications/display-managers/emptty/default.nix
Normal file
32
pkgs/applications/display-managers/emptty/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue