mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 22:57:42 +03:00
Merge pull request #203179 from urandom2/emptty
Fixes https://github.com/NixOS/nixpkgs/issues/158258
This commit is contained in:
commit
0fee97d587
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;
|
||||||
|
};
|
||||||
|
}
|
@ -28373,6 +28373,8 @@ with pkgs;
|
|||||||
|
|
||||||
inherit (gnome) empathy;
|
inherit (gnome) empathy;
|
||||||
|
|
||||||
|
emptty = callPackage ../applications/display-managers/emptty {};
|
||||||
|
|
||||||
endeavour = callPackage ../applications/office/endeavour { };
|
endeavour = callPackage ../applications/office/endeavour { };
|
||||||
|
|
||||||
enhanced-ctorrent = callPackage ../applications/networking/p2p/enhanced-ctorrent { };
|
enhanced-ctorrent = callPackage ../applications/networking/p2p/enhanced-ctorrent { };
|
||||||
|
Loading…
Reference in New Issue
Block a user