about summary refs log tree commit diff
path: root/pkgs/desktops/gnome/core/zenity/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome/core/zenity/default.nix')
-rw-r--r--pkgs/desktops/gnome/core/zenity/default.nix57
1 files changed, 0 insertions, 57 deletions
diff --git a/pkgs/desktops/gnome/core/zenity/default.nix b/pkgs/desktops/gnome/core/zenity/default.nix
deleted file mode 100644
index aa98b8c833205..0000000000000
--- a/pkgs/desktops/gnome/core/zenity/default.nix
+++ /dev/null
@@ -1,57 +0,0 @@
-{ stdenv
-, lib
-, fetchurl
-, help2man
-, meson
-, ninja
-, pkg-config
-, libxml2
-, gnome
-, gtk4
-, gettext
-, libadwaita
-, itstool
-, wrapGAppsHook4
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "zenity";
-  version = "4.0.1";
-
-  src = fetchurl {
-    url = "mirror://gnome/sources/zenity/${lib.versions.majorMinor finalAttrs.version}/zenity-${finalAttrs.version}.tar.xz";
-    sha256 = "DC9TeBOxD3KEcNnQXWyVcT2yUS+clQluHoWxpnOWBeY=";
-  };
-
-  nativeBuildInputs = [
-    help2man
-    meson
-    ninja
-    pkg-config
-    gettext
-    itstool
-    libxml2
-    wrapGAppsHook4
-  ];
-
-  buildInputs = [
-    gtk4
-    libadwaita
-  ];
-
-  passthru = {
-    updateScript = gnome.updateScript {
-      packageName = "zenity";
-      attrPath = "gnome.zenity";
-    };
-  };
-
-  meta = with lib; {
-    mainProgram = "zenity";
-    description = "Tool to display dialogs from the commandline and shell scripts";
-    homepage = "https://gitlab.gnome.org/GNOME/zenity";
-    license = licenses.lgpl21Plus;
-    platforms = platforms.unix;
-    maintainers = teams.gnome.members;
-  };
-})