about summary refs log tree commit diff
path: root/pkgs/applications/display-managers
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-10-14 01:01:47 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-10-14 01:03:18 -0300
commit7dff124c52eaa58b2da3b7e92a69de584319c177 (patch)
tree44a6005862df96c5432202f55372faa508b25a20 /pkgs/applications/display-managers
parent51c6ead49823d5d4d9821b65d6c2ac66dd933555 (diff)
downloadnixlib-7dff124c52eaa58b2da3b7e92a69de584319c177.tar
nixlib-7dff124c52eaa58b2da3b7e92a69de584319c177.tar.gz
nixlib-7dff124c52eaa58b2da3b7e92a69de584319c177.tar.bz2
nixlib-7dff124c52eaa58b2da3b7e92a69de584319c177.tar.lz
nixlib-7dff124c52eaa58b2da3b7e92a69de584319c177.tar.xz
nixlib-7dff124c52eaa58b2da3b7e92a69de584319c177.tar.zst
nixlib-7dff124c52eaa58b2da3b7e92a69de584319c177.zip
tuigreet: move from os-specific/linux to applications/display-managers/greetd
Diffstat (limited to 'pkgs/applications/display-managers')
-rw-r--r--pkgs/applications/display-managers/greetd/tuigreet.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/display-managers/greetd/tuigreet.nix b/pkgs/applications/display-managers/greetd/tuigreet.nix
new file mode 100644
index 000000000000..8660c4a1a49c
--- /dev/null
+++ b/pkgs/applications/display-managers/greetd/tuigreet.nix
@@ -0,0 +1,26 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "tuigreet";
+  version = "0.8.0";
+
+  src = fetchFromGitHub {
+    owner = "apognu";
+    repo = pname;
+    rev = version;
+    sha256 = "sha256-8/2I6bk29/GqZ1ACuN9RgBiGAy7yt0iw2fagHfu4/BI=";
+  };
+
+  cargoSha256 = "sha256-fOs9a0/1c8Kh4JA5up3XSQ+km/FwSYzl0w4UDL4yU4M=";
+
+  meta = with lib; {
+    description = "Graphical console greeter for greetd";
+    homepage = "https://github.com/apognu/tuigreet";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ luc65r ivar ];
+    platforms = platforms.linux;
+  };
+}