{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme }: stdenv.mkDerivation rec { name = "${package-name}-${version}"; package-name = "numix-icon-theme-square"; version = "18.08.17"; src = fetchFromGitHub { owner = "numixproject"; repo = package-name; rev = version; sha256 = "0pn5m73zd240bk2kilcgv57xn7grhbcj5ay4w1jzzn1f4ifaa0w8"; }; nativeBuildInputs = [ gtk3 numix-icon-theme ]; installPhase = '' mkdir -p $out/share/icons cp -a Numix-Square{,-Light} $out/share/icons/ ''; postFixup = '' for theme in $out/share/icons/*; do gtk-update-icon-cache $theme done ''; meta = with stdenv.lib; { description = "Numix icon theme (square version)"; homepage = https://numixproject.org; license = licenses.gpl3; # darwin cannot deal with file names differing only in case platforms = platforms.linux; maintainers = with maintainers; [ romildo ]; }; }