2021-07-22 23:01:41 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchurl
|
|
|
|
, glib
|
|
|
|
, gtk-engine-murrine
|
|
|
|
, gtk_engines
|
|
|
|
, inkscape
|
|
|
|
, jdupes
|
|
|
|
, optipng
|
|
|
|
, sassc
|
|
|
|
, which
|
2022-01-13 13:56:01 +00:00
|
|
|
, buttonSizeVariants ? [] # default to standard
|
|
|
|
, buttonVariants ? [] # default to all
|
|
|
|
, colorVariants ? [] # default to all
|
|
|
|
, opacityVariants ? [] # default to all
|
|
|
|
, themeVariants ? [] # default to MacOS blue
|
|
|
|
, wallpapers ? false
|
2021-07-22 23:01:41 +00:00
|
|
|
}:
|
2019-01-02 22:23:49 +00:00
|
|
|
|
2022-01-13 13:56:01 +00:00
|
|
|
let
|
2019-01-02 22:23:49 +00:00
|
|
|
pname = "mojave-gtk-theme";
|
2022-01-13 13:56:01 +00:00
|
|
|
in
|
|
|
|
lib.checkListOfEnum "${pname}: button size variants" [ "standard" "small" ] buttonSizeVariants
|
|
|
|
lib.checkListOfEnum "${pname}: button variants" [ "standard" "alt" ] buttonVariants
|
|
|
|
lib.checkListOfEnum "${pname}: color variants" [ "light" "dark" ] colorVariants
|
|
|
|
lib.checkListOfEnum "${pname}: opacity variants" [ "standard" "solid" ] opacityVariants
|
|
|
|
lib.checkListOfEnum "${pname}: theme variants" [ "default" "blue" "purple" "pink" "red" "orange" "yellow" "green" "grey" "all" ] themeVariants
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit pname;
|
2022-01-13 12:57:00 +00:00
|
|
|
version = "unstable-2021-12-20";
|
2019-01-02 22:23:49 +00:00
|
|
|
|
2019-12-13 12:57:14 +00:00
|
|
|
srcs = [
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "vinceliuice";
|
|
|
|
repo = pname;
|
2022-01-13 12:57:00 +00:00
|
|
|
rev = "c148646ccab382f7a2d5fdc421fc32d843cb4172";
|
|
|
|
sha256 = "sha256-h4MSSh8cu9M81bM+WJSyl1SQ7CVth1DvjIVOUJXqpxs";
|
2019-12-13 12:57:14 +00:00
|
|
|
})
|
2022-01-13 13:56:01 +00:00
|
|
|
]
|
|
|
|
++
|
|
|
|
lib.optional wallpapers
|
2019-12-13 12:57:14 +00:00
|
|
|
(fetchurl {
|
|
|
|
url = "https://github.com/vinceliuice/Mojave-gtk-theme/raw/11741a99d96953daf9c27e44c94ae50a7247c0ed/macOS_Mojave_Wallpapers.tar.xz";
|
|
|
|
sha256 = "18zzkwm1kqzsdaj8swf0xby1n65gxnyslpw4lnxcx1rphip0rwf7";
|
|
|
|
})
|
2022-01-13 13:56:01 +00:00
|
|
|
;
|
2019-12-13 12:57:14 +00:00
|
|
|
|
|
|
|
sourceRoot = "source";
|
2019-01-02 22:23:49 +00:00
|
|
|
|
2021-07-22 23:01:41 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
glib
|
|
|
|
inkscape
|
|
|
|
jdupes
|
|
|
|
optipng
|
|
|
|
sassc
|
|
|
|
which
|
|
|
|
];
|
2020-03-19 11:51:48 +00:00
|
|
|
|
2021-07-22 23:01:41 +00:00
|
|
|
buildInputs = [
|
|
|
|
gtk_engines
|
|
|
|
];
|
2019-01-02 22:23:49 +00:00
|
|
|
|
2021-07-22 23:01:41 +00:00
|
|
|
propagatedUserEnvPkgs = [
|
|
|
|
gtk-engine-murrine
|
|
|
|
];
|
|
|
|
|
|
|
|
# These fixup steps are slow and unnecessary.
|
|
|
|
dontPatchELF = true;
|
|
|
|
dontRewriteSymlinks = true;
|
2019-01-02 22:23:49 +00:00
|
|
|
|
2020-03-19 11:51:48 +00:00
|
|
|
postPatch = ''
|
2019-01-02 22:23:49 +00:00
|
|
|
patchShebangs .
|
2020-03-19 11:51:48 +00:00
|
|
|
|
2021-07-22 23:01:41 +00:00
|
|
|
for f in \
|
|
|
|
render-assets.sh \
|
|
|
|
src/assets/cinnamon/thumbnails/render-thumbnails.sh \
|
|
|
|
src/assets/gtk-2.0/render-assets.sh \
|
|
|
|
src/assets/gtk/common-assets/render-assets.sh \
|
|
|
|
src/assets/gtk/thumbnails/render-thumbnails.sh \
|
|
|
|
src/assets/gtk/windows-assets/render-alt-assets.sh \
|
|
|
|
src/assets/gtk/windows-assets/render-alt-small-assets.sh \
|
|
|
|
src/assets/gtk/windows-assets/render-assets.sh \
|
|
|
|
src/assets/gtk/windows-assets/render-small-assets.sh \
|
|
|
|
src/assets/metacity-1/render-assets.sh \
|
|
|
|
src/assets/xfwm4/render-assets.sh
|
2020-03-19 11:51:48 +00:00
|
|
|
do
|
|
|
|
substituteInPlace $f \
|
2020-09-10 18:38:25 +00:00
|
|
|
--replace /usr/bin/inkscape ${inkscape}/bin/inkscape \
|
2020-03-19 11:51:48 +00:00
|
|
|
--replace /usr/bin/optipng ${optipng}/bin/optipng
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2021-07-22 23:01:41 +00:00
|
|
|
runHook preInstall
|
2022-01-13 12:59:55 +00:00
|
|
|
|
2022-01-13 13:56:01 +00:00
|
|
|
name= ./install.sh \
|
|
|
|
${lib.optionalString (buttonSizeVariants != []) "--small " + builtins.toString buttonSizeVariants} \
|
|
|
|
${lib.optionalString (buttonVariants != []) "--alt " + builtins.toString buttonVariants} \
|
|
|
|
${lib.optionalString (colorVariants != []) "--color " + builtins.toString colorVariants} \
|
|
|
|
${lib.optionalString (opacityVariants != []) "--opacity " + builtins.toString opacityVariants} \
|
|
|
|
${lib.optionalString (themeVariants != []) "--theme " + builtins.toString themeVariants} \
|
|
|
|
--dest $out/share/themes
|
2022-01-13 12:59:55 +00:00
|
|
|
|
2022-01-13 13:56:01 +00:00
|
|
|
${lib.optionalString wallpapers ''
|
|
|
|
install -D -t $out/share/wallpapers ../"macOS Mojave Wallpapers"/*
|
|
|
|
''}
|
2022-01-13 12:59:55 +00:00
|
|
|
|
|
|
|
# Replace duplicate files with hardlinks to the first file in each
|
|
|
|
# set of duplicates, reducing the installed size in about 53%
|
|
|
|
jdupes -L -r $out/share
|
|
|
|
|
2021-07-22 23:01:41 +00:00
|
|
|
runHook postInstall
|
2019-01-02 22:23:49 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-01-02 22:23:49 +00:00
|
|
|
description = "Mac OSX Mojave like theme for GTK based desktop environments";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/vinceliuice/Mojave-gtk-theme";
|
2021-07-22 23:01:41 +00:00
|
|
|
license = licenses.gpl3Only;
|
2019-01-02 22:23:49 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|