lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #182797 from kilianar/oranchelo-icon-theme-0.9.0

authored by

Martin Weinelt and committed by
GitHub
a805af72 11976981

+15 -6
+15 -6
pkgs/data/icons/oranchelo-icon-theme/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "oranchelo-icon-theme"; 5 - version = "0.8.0.1"; 5 + version = "0.9.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "OrancheloTeam"; 9 9 repo = pname; 10 - rev = "096c8c8d550ac9a85f5f34f3f30243e6f198df2d"; 11 - sha256 = "sha256-TKi42SA33pGKdrPtGTpvxFbOP+5N93Y4BvO4CRTveLM="; 10 + rev = "v${version}"; 11 + sha256 = "sha256-IDsZj/X9rFSdDpa3bL6IPEPCRe5GustPteDxSbfz+SA="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ ··· 22 22 23 23 dontDropIconThemeCache = true; 24 24 25 - installPhase = '' 26 - mkdir -p $out/share/icons 27 - cp -r $Oranchelo* $out/share/icons/ 25 + makeFlags = [ 26 + "DESTDIR=$(out)" 27 + "PREFIX=" 28 + ]; 29 + 30 + postInstall = '' 31 + # space in icon name causes gtk-update-icon-cache to fail 32 + mv "$out/share/icons/Oranchelo/apps/scalable/ grsync.svg" "$out/share/icons/Oranchelo/apps/scalable/grsync.svg" 33 + 34 + for theme in $out/share/icons/*; do 35 + gtk-update-icon-cache "$theme" 36 + done 28 37 ''; 29 38 30 39 meta = with lib; {