tuigreet: init at 0.2.0
This commit is contained in:
parent
687b0d0622
commit
f7ec4a8d37
26
pkgs/os-specific/linux/tuigreet/default.nix
Normal file
26
pkgs/os-specific/linux/tuigreet/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "tuigreet";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "apognu";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1fk8ppxr3a8vdp7g18pp3sgr8b8s11j30mcqpdap4ai14v19idh8";
|
||||
};
|
||||
|
||||
cargoSha256 = "0qpambizjy6z44spnjnh2kd8nay5953mf1ga2iff2mjlv97zpq22";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Graphical console greter for greetd";
|
||||
homepage = "https://github.com/apognu/tuigreet";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ luc65r ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -22552,6 +22552,7 @@ in
|
||||
gtkgreet = callPackage ../os-specific/linux/gtkgreet { };
|
||||
dlm = callPackage ../os-specific/linux/dlm { };
|
||||
wlgreet = callPackage ../os-specific/linux/wlgreet { };
|
||||
tuigreet = callPackage ../os-specific/linux/tuigreet { };
|
||||
};
|
||||
|
||||
goldendict = libsForQt5.callPackage ../applications/misc/goldendict {
|
||||
|
Loading…
Reference in New Issue
Block a user