about summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorD3vil0p3r <vozaanthony@gmail.com>2024-01-28 16:30:06 +0100
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-01-28 16:26:07 +0000
commit08b865b8627ad8a6bba880e9360449305a52e8ab (patch)
treef7c5c5f293831ecde4f92ada32978df15a4c9fcf /pkgs/data
parent6434454c8521479b3eaed38572e6707ac00b8caa (diff)
gruvbox-gtk-theme: move to by-name directory
(cherry picked from commit 14fcff73a9023c21bea17f61eab38f2ccfe6f8e6)
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/themes/gruvbox-gtk-theme/default.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/pkgs/data/themes/gruvbox-gtk-theme/default.nix b/pkgs/data/themes/gruvbox-gtk-theme/default.nix
deleted file mode 100644
index 042f23bebba35..0000000000000
--- a/pkgs/data/themes/gruvbox-gtk-theme/default.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{ lib
-, stdenvNoCC
-, fetchFromGitHub
-, gnome-themes-extra
-, gtk-engine-murrine
-}:
-stdenvNoCC.mkDerivation {
-  pname = "gruvbox-gtk-theme";
-  version = "unstable-2023-05-28";
-
-  src = fetchFromGitHub {
-    owner = "Fausto-Korpsvart";
-    repo = "Gruvbox-GTK-Theme";
-    rev = "c0b7fb501938241a3b6b5734f8cb1f0982edc6b4";
-    hash = "sha256-Y+6HuWaVkNqlYc+w5wLkS2LpKcDtpeOpdHnqBmShm5Q=";
-  };
-
-  propagatedUserEnvPkgs = [
-    gtk-engine-murrine
-  ];
-
-  buildInputs = [
-    gnome-themes-extra
-  ];
-
-  dontBuild = true;
-
-  installPhase = ''
-    runHook preInstall
-    mkdir -p $out/share/themes
-    cp -a themes/* $out/share/themes
-    runHook postInstall
-  '';
-
-  meta = with lib; {
-    description = "A Gtk theme based on the Gruvbox colour pallete";
-    homepage = "https://www.pling.com/p/1681313/";
-    license = licenses.gpl3Only;
-    platforms = platforms.unix;
-    maintainers = [ maintainers.math-42 ];
-  };
-}