{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme }: stdenv.mkDerivation rec { version = "18.08.17"; package-name = "numix-icon-theme-circle"; name = "${package-name}-${version}"; src = fetchFromGitHub { owner = "numixproject"; repo = package-name; rev = version; sha256 = "1nxgm5vf2rzbg8qh48iy0vdj12ffahlp9qhj8h0k1li03s3nf15h"; }; nativeBuildInputs = [ gtk3 numix-icon-theme ]; installPhase = '' install -dm 755 $out/share/icons cp -dr --no-preserve='ownership' Numix-Circle{,-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 (circle version)"; homepage = https://numixproject.org; license = licenses.gpl3; # darwin cannot deal with file names differing only in case platforms = platforms.linux; maintainers = with maintainers; [ jgeerds ]; }; }