summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-07-06 17:52:21 -0400
committerworldofpeace <worldofpeace@users.noreply.github.com>2019-01-24 20:54:14 +0000
commita6d15b831c19be01dcba68e9626431c15a993ce9 (patch)
tree6a53c078b934145b7afd860f7b60110fc4294887 /pkgs/data
parentd507691743e5ba838497caeed6458c722a7e1d04 (diff)
downloadnixpkgs-a6d15b831c19be01dcba68e9626431c15a993ce9.tar
nixpkgs-a6d15b831c19be01dcba68e9626431c15a993ce9.tar.gz
nixpkgs-a6d15b831c19be01dcba68e9626431c15a993ce9.tar.bz2
nixpkgs-a6d15b831c19be01dcba68e9626431c15a993ce9.tar.lz
nixpkgs-a6d15b831c19be01dcba68e9626431c15a993ce9.tar.xz
nixpkgs-a6d15b831c19be01dcba68e9626431c15a993ce9.tar.zst
nixpkgs-a6d15b831c19be01dcba68e9626431c15a993ce9.zip
elementary-icon-theme: drop
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/icons/elementary-icon-theme/default.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/data/icons/elementary-icon-theme/default.nix b/pkgs/data/icons/elementary-icon-theme/default.nix
deleted file mode 100644
index 68ece44116e..00000000000
--- a/pkgs/data/icons/elementary-icon-theme/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ stdenv, fetchFromGitHub, meson, ninja, python3, gtk3 }:
-
-stdenv.mkDerivation rec {
-  name = "elementary-icon-theme-${version}";
-  version = "5.0.2";
-
-  src = fetchFromGitHub {
-    owner = "elementary";
-    repo = "icons";
-    rev = version;
-    sha256 = "12j582f0kggv2lp935r75xg7q26zpl0f05s11xcs4qxazhj1ly2r";
-  };
-
-  nativeBuildInputs = [ meson ninja python3 gtk3 ];
-
-  # Disable installing gimp and inkscape palette files
-  mesonFlags = [
-    "-Dpalettes=false"
-  ];
-
-  postPatch = ''
-    chmod +x meson/symlink.py
-    patchShebangs .
-    sed -i volumeicon/meson.build -e "s,'/','$out',"
-  '';
-
-  postFixup = ''
-    gtk-update-icon-cache $out/share/icons/elementary
-  '';
-
-  meta = with stdenv.lib; {
-    description = "Icons from the Elementary Project";
-    homepage = https://github.com/elementary/icons;
-    license = licenses.gpl3;
-    platforms = platforms.all;
-    maintainers = with maintainers; [ simonvandel ];
-  };
-}