summary refs log tree commit diff
path: root/pkgs/os-specific/linux/dlm
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-10-14 01:00:02 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-10-14 01:03:17 -0300
commit1f162fbab7751ab3f22b408072da4d5a850bf7a5 (patch)
tree44883eca36d02392f810ddbec3c41284c042c737 /pkgs/os-specific/linux/dlm
parent3f58c33b2436b02d202d35413b294aa9324b5d71 (diff)
downloadnixpkgs-1f162fbab7751ab3f22b408072da4d5a850bf7a5.tar
nixpkgs-1f162fbab7751ab3f22b408072da4d5a850bf7a5.tar.gz
nixpkgs-1f162fbab7751ab3f22b408072da4d5a850bf7a5.tar.bz2
nixpkgs-1f162fbab7751ab3f22b408072da4d5a850bf7a5.tar.lz
nixpkgs-1f162fbab7751ab3f22b408072da4d5a850bf7a5.tar.xz
nixpkgs-1f162fbab7751ab3f22b408072da4d5a850bf7a5.tar.zst
nixpkgs-1f162fbab7751ab3f22b408072da4d5a850bf7a5.zip
dlm: move from os-specific/linux to applications/display-managers/greetd
Diffstat (limited to 'pkgs/os-specific/linux/dlm')
-rw-r--r--pkgs/os-specific/linux/dlm/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/os-specific/linux/dlm/default.nix b/pkgs/os-specific/linux/dlm/default.nix
deleted file mode 100644
index 3b6f4773a29..00000000000
--- a/pkgs/os-specific/linux/dlm/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ lib
-, rustPlatform
-, fetchFromSourcehut
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "dlm";
-  version = "2020-01-07";
-
-  src = fetchFromSourcehut {
-    owner = "~kennylevinsen";
-    repo = pname;
-    rev = "6b0e11c4f453b1a4d7a32019227539a980b7ce66";
-    sha256 = "1r3w7my0g3v2ya317qnvjx8wnagjahpj7yx72a65hf2pjbf5x42p";
-  };
-
-  cargoSha256 = "01a8k60qnx2pgxb2adgw30c2hjb60w6230khm5hyqgmp7z4rm8k8";
-
-  meta = with lib; {
-    description = "A stupid simple graphical login manager";
-    homepage = "https://git.sr.ht/~kennylevinsen/dlm";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ luc65r ];
-    platforms = platforms.linux;
-  };
-}