summary refs log tree commit diff
path: root/pkgs/os-specific/linux/tuigreet
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/linux/tuigreet
parent687b0d0622eed43438d53abe15cb8d6f50fad87e (diff)
downloadnixpkgs-f7ec4a8d372f093c5669ae40720deff28c22aff8.tar
nixpkgs-f7ec4a8d372f093c5669ae40720deff28c22aff8.tar.gz
nixpkgs-f7ec4a8d372f093c5669ae40720deff28c22aff8.tar.bz2
nixpkgs-f7ec4a8d372f093c5669ae40720deff28c22aff8.tar.lz
nixpkgs-f7ec4a8d372f093c5669ae40720deff28c22aff8.tar.xz
nixpkgs-f7ec4a8d372f093c5669ae40720deff28c22aff8.tar.zst
nixpkgs-f7ec4a8d372f093c5669ae40720deff28c22aff8.zip
tuigreet: init at 0.2.0
Diffstat (limited to 'pkgs/os-specific/linux/tuigreet')
-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 00000000000..b6db7cfbb7f
--- /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;
+  };
+}