2021-11-17 19:42:50 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2022-07-19 10:43:49 +00:00
|
|
|
, gitUpdater
|
2021-11-17 19:42:50 +00:00
|
|
|
, gdk-pixbuf
|
|
|
|
, gnome-themes-extra
|
|
|
|
, gtk-engine-murrine
|
2022-07-19 10:43:49 +00:00
|
|
|
, jdupes
|
2021-11-17 19:42:50 +00:00
|
|
|
, librsvg
|
|
|
|
, sassc
|
|
|
|
, which
|
2022-07-19 10:43:49 +00:00
|
|
|
, themeVariants ? [] # default: blue
|
|
|
|
, colorVariants ? [] # default: all
|
|
|
|
, tweaks ? []
|
2021-11-17 19:42:50 +00:00
|
|
|
}:
|
2018-12-28 18:07:06 +00:00
|
|
|
|
2022-07-19 10:43:49 +00:00
|
|
|
let
|
2018-12-28 18:07:06 +00:00
|
|
|
pname = "qogir-theme";
|
2022-07-19 10:43:49 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
lib.checkListOfEnum "${pname}: theme variants" [ "default" "manjaro" "ubuntu" "all" ] themeVariants
|
|
|
|
lib.checkListOfEnum "${pname}: color variants" [ "standard" "light" "dark" ] colorVariants
|
|
|
|
lib.checkListOfEnum "${pname}: tweaks" [ "image" "square" "round" ] tweaks
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit pname;
|
2023-05-25 13:05:28 +00:00
|
|
|
version = "2023-05-24";
|
2018-12-28 18:07:06 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vinceliuice";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-05-25 13:05:28 +00:00
|
|
|
sha256 = "L19pbmJJFr1xi4ZTp0ocxmdMvWmtkK2zquOFfbV+P5Q=";
|
2018-12-28 18:07:06 +00:00
|
|
|
};
|
|
|
|
|
2021-11-17 19:42:50 +00:00
|
|
|
nativeBuildInputs = [
|
2022-07-19 10:43:49 +00:00
|
|
|
jdupes
|
2021-11-17 19:42:50 +00:00
|
|
|
sassc
|
|
|
|
which
|
|
|
|
];
|
2018-12-28 18:07:06 +00:00
|
|
|
|
2021-11-17 19:42:50 +00:00
|
|
|
buildInputs = [
|
|
|
|
gdk-pixbuf # pixbuf engine for Gtk2
|
|
|
|
gnome-themes-extra # adwaita engine for Gtk2
|
|
|
|
librsvg # pixbuf loader for svg
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedUserEnvPkgs = [
|
|
|
|
gtk-engine-murrine # murrine engine for Gtk2
|
|
|
|
];
|
2018-12-28 18:07:06 +00:00
|
|
|
|
2022-07-19 10:43:49 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs install.sh clean-old-theme.sh
|
|
|
|
'';
|
|
|
|
|
2018-12-28 18:07:06 +00:00
|
|
|
installPhase = ''
|
2022-07-19 10:43:49 +00:00
|
|
|
runHook preInstall
|
|
|
|
|
2018-12-28 18:07:06 +00:00
|
|
|
mkdir -p $out/share/themes
|
2022-07-19 10:43:49 +00:00
|
|
|
|
|
|
|
name= HOME="$TMPDIR" ./install.sh \
|
|
|
|
${lib.optionalString (themeVariants != []) "--theme " + builtins.toString themeVariants} \
|
|
|
|
${lib.optionalString (colorVariants != []) "--color " + builtins.toString colorVariants} \
|
|
|
|
${lib.optionalString (tweaks != []) "--tweaks " + builtins.toString tweaks} \
|
|
|
|
--dest $out/share/themes
|
|
|
|
|
2020-02-26 11:27:38 +00:00
|
|
|
mkdir -p $out/share/doc/${pname}
|
|
|
|
cp -a src/firefox $out/share/doc/${pname}
|
2022-07-19 10:43:49 +00:00
|
|
|
|
2020-02-26 11:27:38 +00:00
|
|
|
rm $out/share/themes/*/{AUTHORS,COPYING}
|
2022-07-19 10:43:49 +00:00
|
|
|
|
2022-10-16 11:25:58 +00:00
|
|
|
jdupes --quiet --link-soft --recurse $out/share
|
2022-07-19 10:43:49 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2018-12-28 18:07:06 +00:00
|
|
|
'';
|
|
|
|
|
2022-09-27 21:12:05 +00:00
|
|
|
passthru.updateScript = gitUpdater { };
|
2022-05-08 20:17:47 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-10-25 10:56:33 +00:00
|
|
|
description = "Flat Design theme for GTK based desktop environments";
|
2023-04-21 10:11:42 +00:00
|
|
|
homepage = "https://github.com/vinceliuice/Qogir-theme";
|
2021-02-09 12:54:59 +00:00
|
|
|
license = licenses.gpl3Only;
|
2018-12-28 18:07:06 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|