summaryrefslogtreecommitdiffstats
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorluc65r <lucas@ransan.tk>2020-10-31 17:05:46 +0100
committerLucas Ransan <lucas@ransan.tk>2021-03-22 10:20:15 +0100
commitf7ec4a8d372f093c5669ae40720deff28c22aff8 (patch)
treede68083ef6274cbb0e1de7ec190816df3bd90bac /pkgs/os-specific
parent687b0d0622eed43438d53abe15cb8d6f50fad87e (diff)
tuigreet: init at 0.2.0
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/tuigreet/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/tuigreet/default.nix b/pkgs/os-specific/linux/tuigreet/default.nix
new file mode 100644
index 000000000000..b6db7cfbb7fd
--- /dev/null
+++ b/pkgs/os-specific/linux/tuigreet/default.nix
@@ -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;
+ };
+}