aboutsummaryrefslogtreecommitdiff
path: root/pkgs/theme
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/theme')
-rw-r--r--pkgs/theme/delft-icon-theme.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/pkgs/theme/delft-icon-theme.nix b/pkgs/theme/delft-icon-theme.nix
deleted file mode 100644
index fb0b6e3..0000000
--- a/pkgs/theme/delft-icon-theme.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- lib,
- stdenvNoCC,
- fetchFromGitHub,
- gtk3,
- gnome-icon-theme,
- hicolor-icon-theme,
-}:
-stdenvNoCC.mkDerivation rec {
- pname = "delft-icon-theme";
- version = "1.15";
-
- src = fetchFromGitHub {
- owner = "madmaxms";
- repo = "iconpack-delft";
- rev = "v${version}";
- sha256 = "fluSh2TR1CdIW54wkUp1QRB0m9akFKnSn4d+0z6gkLA=";
- };
-
- nativeBuildInputs = [gtk3];
-
- propagatedBuildInputs = [gnome-icon-theme hicolor-icon-theme];
-
- dontDropIconThemeCache = true;
-
- installPhase = ''
- mkdir -p $out/share/icons
- cp -a Delft* $out/share/icons/
-
- for theme in $out/share/icons/*; do
- gtk-update-icon-cache $theme
- done
- '';
-
- meta = with lib; {
- description = "Delft icon theme";
- homepage = "https://github.com/madmaxms/iconpack-delft";
- license = licenses.gpl3Only;
- platforms = platforms.linux;
- };
-}