Merge pull request #130190 from romildo/upd.qogir-icon-theme

authored by

Sandro and committed by
GitHub
bdc08fd5 92884dff

+12 -5
+12 -5
pkgs/data/icons/qogir-icon-theme/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, gtk3, hicolor-icon-theme }: 2 3 stdenv.mkDerivation rec { 4 pname = "qogir-icon-theme"; 5 - version = "2020-11-22"; 6 7 src = fetchFromGitHub { 8 owner = "vinceliuice"; 9 repo = pname; 10 rev = version; 11 - sha256 = "04rkpsiz8jg9i55mslsh7a6wgyp30ja3xss7qacqimdab236300d"; 12 }; 13 14 - nativeBuildInputs = [ gtk3 ]; 15 16 propagatedBuildInputs = [ hicolor-icon-theme ]; 17 18 dontDropIconThemeCache = true; 19 20 installPhase = '' 21 patchShebangs install.sh 22 mkdir -p $out/share/icons 23 name= ./install.sh -d $out/share/icons 24 ''; 25 26 meta = with lib; { 27 description = "Flat colorful design icon theme"; 28 homepage = "https://github.com/vinceliuice/Qogir-icon-theme"; 29 - license = with licenses; [ gpl3 ]; 30 platforms = platforms.linux; 31 maintainers = with maintainers; [ romildo ]; 32 };
··· 1 + { lib, stdenv, fetchFromGitHub, gtk3, hicolor-icon-theme, jdupes }: 2 3 stdenv.mkDerivation rec { 4 pname = "qogir-icon-theme"; 5 + version = "2021-07-14"; 6 7 src = fetchFromGitHub { 8 owner = "vinceliuice"; 9 repo = pname; 10 rev = version; 11 + sha256 = "0anma2ss3yqr9njx4ay2nyxjkgnj7ky17c93ipwgrvgsv8jk5nn2"; 12 }; 13 14 + nativeBuildInputs = [ gtk3 jdupes ]; 15 16 propagatedBuildInputs = [ hicolor-icon-theme ]; 17 18 dontDropIconThemeCache = true; 19 20 + # These fixup steps are slow and unnecessary. 21 + dontPatchELF = true; 22 + dontRewriteSymlinks = true; 23 + 24 installPhase = '' 25 + runHook preInstall 26 patchShebangs install.sh 27 mkdir -p $out/share/icons 28 name= ./install.sh -d $out/share/icons 29 + jdupes -l -r $out/share/icons 30 + runHook postInstall 31 ''; 32 33 meta = with lib; { 34 description = "Flat colorful design icon theme"; 35 homepage = "https://github.com/vinceliuice/Qogir-icon-theme"; 36 + license = with licenses; [ gpl3Only ]; 37 platforms = platforms.linux; 38 maintainers = with maintainers; [ romildo ]; 39 };