1 { lib, stdenvNoCC, fetchurl, gtk3, adwaita-icon-theme, hicolor-icon-theme }:
3 stdenvNoCC.mkDerivation rec {
4 pname = "humanity-icon-theme";
8 url = "https://launchpad.net/ubuntu/+archive/primary/+files/${pname}_${version}.tar.xz";
9 sha256 = "sha256-AyHl4zMyFE2/5Cui3Y/SB1yEUuyafDdybFPrafo4Ki0=";
16 propagatedBuildInputs = [
21 dontDropIconThemeCache = true;
26 mkdir -p $out/share/icons
27 cp -a Humanity* $out/share/icons
28 rm $out/share/icons/*/{AUTHORS,CONTRIBUTORS,COPYING}
30 for theme in $out/share/icons/*; do
31 gtk-update-icon-cache $theme
38 description = "Humanity icons from Ubuntu";
39 homepage = "https://launchpad.net/humanity/";
40 license = licenses.gpl2;
41 platforms = platforms.unix;
42 maintainers = [ maintainers.romildo ];