summary refs log tree commit diff
path: root/pkgs/os-specific/linux/gtkgreet
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-10-14 01:00:49 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-10-14 01:03:17 -0300
commit51c6ead49823d5d4d9821b65d6c2ac66dd933555 (patch)
treea4786f4ce54d5224caae808ff65c5783e2a6f1d1 /pkgs/os-specific/linux/gtkgreet
parent1f162fbab7751ab3f22b408072da4d5a850bf7a5 (diff)
downloadnixpkgs-51c6ead49823d5d4d9821b65d6c2ac66dd933555.tar
nixpkgs-51c6ead49823d5d4d9821b65d6c2ac66dd933555.tar.gz
nixpkgs-51c6ead49823d5d4d9821b65d6c2ac66dd933555.tar.bz2
nixpkgs-51c6ead49823d5d4d9821b65d6c2ac66dd933555.tar.lz
nixpkgs-51c6ead49823d5d4d9821b65d6c2ac66dd933555.tar.xz
nixpkgs-51c6ead49823d5d4d9821b65d6c2ac66dd933555.tar.zst
nixpkgs-51c6ead49823d5d4d9821b65d6c2ac66dd933555.zip
gtkgreet: move from os-specific/linux to applications/display-managers/greetd
Diffstat (limited to 'pkgs/os-specific/linux/gtkgreet')
-rw-r--r--pkgs/os-specific/linux/gtkgreet/default.nix53
1 files changed, 0 insertions, 53 deletions
diff --git a/pkgs/os-specific/linux/gtkgreet/default.nix b/pkgs/os-specific/linux/gtkgreet/default.nix
deleted file mode 100644
index e0ebbb3bc4c..00000000000
--- a/pkgs/os-specific/linux/gtkgreet/default.nix
+++ /dev/null
@@ -1,53 +0,0 @@
-{ stdenv
-, lib
-, fetchFromSourcehut
-, pkg-config
-, cmake
-, meson
-, ninja
-, gtk3
-, gtk-layer-shell
-, json_c
-, scdoc
-}:
-
-stdenv.mkDerivation rec {
-  pname = "gtkgreet";
-  version = "0.7";
-
-  src = fetchFromSourcehut {
-    owner = "~kennylevinsen";
-    repo = pname;
-    rev = version;
-    sha256 = "ms+2FdtzzNlmlzNxFhu4cpX5H+5H+9ZOtZ0p8uVA3lo=";
-  };
-
-  nativeBuildInputs = [
-    pkg-config
-    meson
-    ninja
-    cmake
-  ];
-
-  buildInputs = [
-    gtk3
-    gtk-layer-shell
-    json_c
-    scdoc
-  ];
-
-  mesonFlags = [
-    "-Dlayershell=enabled"
-  ];
-
-  # G_APPLICATION_FLAGS_NONE is deprecated in GLib 2.73.3+.
-  NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
-
-  meta = with lib; {
-    description = "GTK based greeter for greetd, to be run under cage or similar";
-    homepage = "https://git.sr.ht/~kennylevinsen/gtkgreet";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ luc65r ];
-    platforms = platforms.linux;
-  };
-}