2022-06-14 20:30:18 +00:00
|
|
|
{ lib
|
2022-11-16 00:52:55 +00:00
|
|
|
, stdenvNoCC
|
2022-06-14 20:30:18 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, gdk-pixbuf
|
|
|
|
, gtk-engine-murrine
|
2022-11-16 00:52:55 +00:00
|
|
|
, jdupes
|
2022-06-14 20:30:18 +00:00
|
|
|
, librsvg
|
|
|
|
, gitUpdater
|
2022-11-16 00:52:55 +00:00
|
|
|
, colorVariants ? [] # default: all
|
|
|
|
, themeVariants ? [] # default: blue
|
2022-06-14 20:30:18 +00:00
|
|
|
}:
|
2018-09-15 14:50:24 +00:00
|
|
|
|
2022-11-16 00:52:55 +00:00
|
|
|
let
|
2020-05-09 10:28:28 +00:00
|
|
|
pname = "matcha-gtk-theme";
|
2022-11-16 00:52:55 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
lib.checkListOfEnum "${pname}: color variants" [ "standard" "light" "dark" ] colorVariants
|
|
|
|
lib.checkListOfEnum "${pname}: theme variants" [ "aliz" "azul" "sea" "pueril" "all" ] themeVariants
|
|
|
|
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
inherit pname;
|
2024-05-01 11:11:20 +00:00
|
|
|
version = "2024-05-01";
|
2018-09-15 14:50:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vinceliuice";
|
2019-09-08 20:22:41 +00:00
|
|
|
repo = pname;
|
2019-09-30 10:00:09 +00:00
|
|
|
rev = version;
|
2024-05-01 11:11:20 +00:00
|
|
|
sha256 = "trQwRZ/JKIS8TcRIg0eL5GmB/yymDwqqNued0ddRuqU=";
|
2018-09-15 14:50:24 +00:00
|
|
|
};
|
|
|
|
|
2022-11-16 00:52:55 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
jdupes
|
|
|
|
];
|
|
|
|
|
2022-06-14 20:30:18 +00:00
|
|
|
buildInputs = [
|
|
|
|
gdk-pixbuf
|
|
|
|
librsvg
|
|
|
|
];
|
2018-09-15 14:50:24 +00:00
|
|
|
|
2022-06-14 20:30:18 +00:00
|
|
|
propagatedUserEnvPkgs = [
|
|
|
|
gtk-engine-murrine
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs install.sh
|
|
|
|
'';
|
2018-09-15 14:50:24 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2021-04-05 12:59:51 +00:00
|
|
|
runHook preInstall
|
2022-11-16 00:52:55 +00:00
|
|
|
|
2018-12-24 20:04:05 +00:00
|
|
|
mkdir -p $out/share/themes
|
2022-11-16 00:52:55 +00:00
|
|
|
|
|
|
|
name= ./install.sh \
|
|
|
|
${lib.optionalString (colorVariants != []) "--color " + builtins.toString colorVariants} \
|
|
|
|
${lib.optionalString (themeVariants != []) "--theme " + builtins.toString themeVariants} \
|
|
|
|
--dest $out/share/themes
|
|
|
|
|
2020-02-27 18:50:44 +00:00
|
|
|
mkdir -p $out/share/doc/${pname}
|
|
|
|
cp -a src/extra/firefox $out/share/doc/${pname}
|
2022-11-16 00:52:55 +00:00
|
|
|
|
|
|
|
jdupes --quiet --link-soft --recurse $out/share
|
|
|
|
|
2021-04-05 12:59:51 +00:00
|
|
|
runHook postInstall
|
2018-09-15 14:50:24 +00:00
|
|
|
'';
|
|
|
|
|
2022-09-27 21:12:05 +00:00
|
|
|
passthru.updateScript = gitUpdater { };
|
2022-06-14 20:30:18 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2022-06-14 20:30:18 +00:00
|
|
|
description = "Stylish flat Design theme for GTK based desktop environments";
|
2020-02-06 15:56:24 +00:00
|
|
|
homepage = "https://vinceliuice.github.io/theme-matcha";
|
2021-01-12 17:29:03 +00:00
|
|
|
license = licenses.gpl3Only;
|
2018-09-15 14:50:24 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|