about summary refs log tree commit diff
path: root/pkgs/by-name/gr
diff options
context:
space:
mode:
authorEmily Trau <13267947+emilytrau@users.noreply.github.com>2023-12-02 01:31:38 +1100
committerGitHub <noreply@github.com>2023-12-02 01:31:38 +1100
commit7826c3edfc1e6a1847b1f7aba6fa51f1e1068a80 (patch)
treef28f9cd38edd8b5868855b4384f88557699cb07f /pkgs/by-name/gr
parent475653dc2fa7d8c40df5c86a994811f4d877d5e4 (diff)
downloadnixlib-7826c3edfc1e6a1847b1f7aba6fa51f1e1068a80.tar
nixlib-7826c3edfc1e6a1847b1f7aba6fa51f1e1068a80.tar.gz
nixlib-7826c3edfc1e6a1847b1f7aba6fa51f1e1068a80.tar.bz2
nixlib-7826c3edfc1e6a1847b1f7aba6fa51f1e1068a80.tar.lz
nixlib-7826c3edfc1e6a1847b1f7aba6fa51f1e1068a80.tar.xz
nixlib-7826c3edfc1e6a1847b1f7aba6fa51f1e1068a80.tar.zst
nixlib-7826c3edfc1e6a1847b1f7aba6fa51f1e1068a80.zip
Revert "gruvbox-plus-icons: init at unstable-2023-11-30"
Diffstat (limited to 'pkgs/by-name/gr')
-rw-r--r--pkgs/by-name/gr/gruvbox-plus-icons/package.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/by-name/gr/gruvbox-plus-icons/package.nix b/pkgs/by-name/gr/gruvbox-plus-icons/package.nix
deleted file mode 100644
index 5c0424e49bc9..000000000000
--- a/pkgs/by-name/gr/gruvbox-plus-icons/package.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, stdenvNoCC, fetchFromGitHub }:
-
-stdenvNoCC.mkDerivation {
-  pname = "gruvbox-plus-icons";
-  version = "unstable-2023-11-30";
-
-  src = fetchFromGitHub {
-    owner = "SylEleuth";
-    repo = "gruvbox-plus-icon-pack";
-    rev = "5ce3ef1ae9d8360e4aadfcf73842df9a417dd53b";
-    hash = "sha256-xS6ijyRhc9CaZVERLjqebbNsSbPoFUVTAutOjWiOUKc=";
-  };
-
-  installPhase = ''
-    runHook preInstall
-
-    mkdir -p $out/share/icons
-    cp -r Gruvbox-Plus-Dark $out/share/icons/
-
-    runHook postInstall
-  '';
-
-  meta = {
-    description = "Icon pack for Linux desktops based on the Gruvbox color theme";
-    homepage = "https://github.com/SylEleuth/gruvbox-plus-icon-pack";
-    license = lib.licenses.gpl3Only;
-    platforms = lib.platforms.linux;
-    maintainers = with lib.maintainers; [ RGBCube ];
-  };
-}