summary refs log tree commit diff
path: root/pkgs/os-specific/linux/tuigreet/default.nix
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/os-specific/linux/tuigreet/default.nix
parent51c6ead49823d5d4d9821b65d6c2ac66dd933555 (diff)
downloadnixpkgs-7dff124c52eaa58b2da3b7e92a69de584319c177.tar
nixpkgs-7dff124c52eaa58b2da3b7e92a69de584319c177.tar.gz
nixpkgs-7dff124c52eaa58b2da3b7e92a69de584319c177.tar.bz2
nixpkgs-7dff124c52eaa58b2da3b7e92a69de584319c177.tar.lz
nixpkgs-7dff124c52eaa58b2da3b7e92a69de584319c177.tar.xz
nixpkgs-7dff124c52eaa58b2da3b7e92a69de584319c177.tar.zst
nixpkgs-7dff124c52eaa58b2da3b7e92a69de584319c177.zip
tuigreet: move from os-specific/linux to applications/display-managers/greetd
Diffstat (limited to 'pkgs/os-specific/linux/tuigreet/default.nix')
-rw-r--r--pkgs/os-specific/linux/tuigreet/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/os-specific/linux/tuigreet/default.nix b/pkgs/os-specific/linux/tuigreet/default.nix
deleted file mode 100644
index 8660c4a1a49..00000000000
--- a/pkgs/os-specific/linux/tuigreet/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ 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;
-  };
-}