2022-01-12 11:04:49 +00:00
|
|
|
{ lib
|
|
|
|
, stdenvNoCC
|
|
|
|
, fetchFromGitHub
|
2022-07-22 14:50:41 +01:00
|
|
|
, gitUpdater
|
2022-01-12 11:04:49 +00:00
|
|
|
, gtk3
|
|
|
|
, hicolor-icon-theme
|
|
|
|
, jdupes
|
2022-07-22 14:50:41 +01:00
|
|
|
, colorVariants ? [] # default is all
|
|
|
|
, themeVariants ? [] # default is all
|
2022-01-12 11:04:49 +00:00
|
|
|
}:
|
|
|
|
|
2022-07-22 14:50:41 +01:00
|
|
|
let
|
2019-09-15 20:36:32 +01:00
|
|
|
pname = "qogir-icon-theme";
|
2022-07-22 14:50:41 +01:00
|
|
|
|
|
|
|
in
|
2022-10-08 13:18:56 +01:00
|
|
|
lib.checkListOfEnum "${pname}: color variants" [ "standard" "dark" "all" ] colorVariants
|
2022-07-22 14:50:41 +01:00
|
|
|
lib.checkListOfEnum "${pname}: theme variants" [ "default" "manjaro" "ubuntu" "all" ] themeVariants
|
|
|
|
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
inherit pname;
|
2022-11-09 12:29:36 +00:00
|
|
|
version = "2022-11-05";
|
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-11-09 12:29:36 +00:00
|
|
|
sha256 = "sha256-KQ3NmxNtJTURjH15hyZzngJ6aVTwlze28xQbRTlQmPE=";
|
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;
|
|
|
|
|
2022-07-22 14:50:41 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs install.sh
|
|
|
|
'';
|
|
|
|
|
2019-09-15 20:36:32 +01:00
|
|
|
installPhase = ''
|
2021-07-14 15:28:42 +01:00
|
|
|
runHook preInstall
|
2022-07-22 14:50:41 +01:00
|
|
|
|
2019-09-15 20:36:32 +01:00
|
|
|
mkdir -p $out/share/icons
|
2022-07-22 14:50:41 +01:00
|
|
|
|
|
|
|
name= ./install.sh \
|
|
|
|
${lib.optionalString (themeVariants != []) ("--theme " + builtins.toString themeVariants)} \
|
|
|
|
${lib.optionalString (colorVariants != []) ("--color " + builtins.toString colorVariants)} \
|
|
|
|
--dest $out/share/icons
|
|
|
|
|
|
|
|
jdupes --quiet --link-soft --recurse $out/share
|
|
|
|
|
2021-07-14 15:28:42 +01:00
|
|
|
runHook postInstall
|
2019-09-15 20:36:32 +01:00
|
|
|
'';
|
|
|
|
|
2022-09-27 22:12:05 +01:00
|
|
|
passthru.updateScript = gitUpdater { };
|
2022-07-22 14:50:41 +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 ];
|
|
|
|
};
|
|
|
|
}
|