aboutsummaryrefslogtreecommitdiff
path: root/pkgs/theme
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2024-04-11 20:04:38 +0200
committerKarel Kočí <cynerd@email.cz>2024-04-11 20:04:38 +0200
commite9fcc90c41dbccbb18c7b7314096b854b21ee02a (patch)
tree93cf4d4c5161f0b6fba1c31050d3a7ed61f2b3d5 /pkgs/theme
parent22b547adf43c6775a017932e7294eb1b16f03ef2 (diff)
downloadnixos-personal-e9fcc90c41dbccbb18c7b7314096b854b21ee02a.tar.gz
nixos-personal-e9fcc90c41dbccbb18c7b7314096b854b21ee02a.tar.bz2
nixos-personal-e9fcc90c41dbccbb18c7b7314096b854b21ee02a.zip
pkgs: update and drop icon theme
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;
- };
-}