2022-01-12 11:04:49 +00:00
|
|
|
{ lib
|
|
|
|
, stdenvNoCC
|
|
|
|
, fetchFromGitHub
|
|
|
|
, gtk3
|
|
|
|
, hicolor-icon-theme
|
|
|
|
, jdupes
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
2019-09-15 20:36:32 +01:00
|
|
|
pname = "qogir-icon-theme";
|
2022-01-12 11:04:49 +00:00
|
|
|
version = "2022-01-12";
|
2019-09-15 20:36:32 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vinceliuice";
|
|
|
|
repo = pname;
|
2020-01-29 11:27:56 +00:00
|
|
|
rev = version;
|
2022-01-12 11:04:49 +00:00
|
|
|
sha256 = "1daayxsqh7di3bvfnl39h1arsj1fypd3ba30mas6dl1d0qy17z1p";
|
2019-09-15 20:36:32 +01:00
|
|
|
};
|
|
|
|
|
2021-07-14 15:31:25 +01:00
|
|
|
nativeBuildInputs = [ gtk3 jdupes ];
|
2019-09-15 20:36:32 +01:00
|
|
|
|
2020-04-18 00:52:26 +01:00
|
|
|
propagatedBuildInputs = [ hicolor-icon-theme ];
|
|
|
|
|
2020-01-29 11:27:56 +00:00
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
|
2021-07-14 15:31:25 +01:00
|
|
|
# These fixup steps are slow and unnecessary.
|
|
|
|
dontPatchELF = true;
|
|
|
|
dontRewriteSymlinks = true;
|
|
|
|
|
2019-09-15 20:36:32 +01:00
|
|
|
installPhase = ''
|
2021-07-14 15:28:42 +01:00
|
|
|
runHook preInstall
|
2019-09-15 20:36:32 +01:00
|
|
|
patchShebangs install.sh
|
|
|
|
mkdir -p $out/share/icons
|
|
|
|
name= ./install.sh -d $out/share/icons
|
2022-01-12 11:04:49 +00:00
|
|
|
jdupes -L -r $out/share/icons
|
2021-07-14 15:28:42 +01:00
|
|
|
runHook postInstall
|
2019-09-15 20:36:32 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-02-21 12:02:19 +00:00
|
|
|
description = "Flat colorful design icon theme";
|
2020-01-29 11:27:56 +00:00
|
|
|
homepage = "https://github.com/vinceliuice/Qogir-icon-theme";
|
2021-07-14 15:30:47 +01:00
|
|
|
license = with licenses; [ gpl3Only ];
|
2019-09-15 20:36:32 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|