summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorpiegames <git@piegames.de>2021-05-29 18:12:23 +0200
committerpiegames <git@piegames.de>2021-07-14 03:35:11 +0200
commitba3562ed09214cedf3e7855cbd4bf6b1a9673380 (patch)
tree08a276b2b1c8a0394128709005a647767f6caa8e /pkgs/desktops
parent5128ec5f06f89b3e3b51fceea35ace83146e86a6 (diff)
downloadnixpkgs-ba3562ed09214cedf3e7855cbd4bf6b1a9673380.tar
nixpkgs-ba3562ed09214cedf3e7855cbd4bf6b1a9673380.tar.gz
nixpkgs-ba3562ed09214cedf3e7855cbd4bf6b1a9673380.tar.bz2
nixpkgs-ba3562ed09214cedf3e7855cbd4bf6b1a9673380.tar.lz
nixpkgs-ba3562ed09214cedf3e7855cbd4bf6b1a9673380.tar.xz
nixpkgs-ba3562ed09214cedf3e7855cbd4bf6b1a9673380.tar.zst
nixpkgs-ba3562ed09214cedf3e7855cbd4bf6b1a9673380.zip
gnomeExtensions.window-is-ready-remover: Remove manual packaging
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/gnome/extensions/manuallyPackaged.nix1
-rw-r--r--pkgs/desktops/gnome/extensions/window-is-ready-remover/default.nix28
2 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/desktops/gnome/extensions/manuallyPackaged.nix b/pkgs/desktops/gnome/extensions/manuallyPackaged.nix
index 57f5d3612f7..98841b73dde 100644
--- a/pkgs/desktops/gnome/extensions/manuallyPackaged.nix
+++ b/pkgs/desktops/gnome/extensions/manuallyPackaged.nix
@@ -34,5 +34,4 @@
   "TopIcons@phocean.net" = callPackage ./topicons-plus { };
   "unite@hardpixel.eu" = callPackage ./unite { };
   "window-corner-preview@fabiomereu.it" = callPackage ./window-corner-preview { };
-  "windowIsReady_Remover@nunofarruca@gmail.com" = callPackage ./window-is-ready-remover { };
 }
diff --git a/pkgs/desktops/gnome/extensions/window-is-ready-remover/default.nix b/pkgs/desktops/gnome/extensions/window-is-ready-remover/default.nix
deleted file mode 100644
index 3f0e9e71b57..00000000000
--- a/pkgs/desktops/gnome/extensions/window-is-ready-remover/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ lib, stdenv, fetchFromGitHub }:
-
-stdenv.mkDerivation rec {
-  pname = "gnome-shell-extension-window-is-ready-remover";
-  version = "1.02";
-
-  src = fetchFromGitHub {
-    owner = "nunofarruca";
-    repo = "WindowIsReady_Remover";
-    rev = "v${version}";
-    sha256 = "1xaf95gn0if44avvkjxyf8fl29y28idn9shnrks0m9k67jcwv8ns";
-  };
-
-  uuid = "windowIsReady_Remover@nunofarruca@gmail.com";
-
-  installPhase = ''
-    runHook preInstall
-    mkdir -p $out/share/gnome-shell/extensions/
-    cp -r ${uuid} $out/share/gnome-shell/extensions/${uuid}
-    runHook postInstall
-  '';
-
-  meta = with lib; {
-    description = "GNOME Shell extension removing window is ready notification";
-    homepage = "https://github.com/nunofarruca/WindowIsReady_Remover";
-    license = licenses.asl20;
-  };
-}