nixpkgs/pkgs/data/themes/whitesur/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
3.0 KiB
Nix
Raw Normal View History

2021-06-23 19:04:54 +00:00
{ lib
, stdenv
, fetchFromGitHub
, gitUpdater
2021-06-23 19:04:54 +00:00
, glib
, gnome-shell
2021-06-23 19:04:54 +00:00
, gnome-themes-extra
, jdupes
2021-06-23 19:04:54 +00:00
, libxml2
, sassc
, util-linux
, altVariants ? [] # default: normal
, colorVariants ? [] # default: all
, opacityVariants ? [] # default: all
, themeVariants ? [] # default: default (BigSur-like theme)
, nautilusSize ? null # default: 200px
, panelOpacity ? null # default: 15%
, panelSize ? null # default: 32px
2021-06-23 19:04:54 +00:00
}:
let
pname = "whitesur-gtk-theme";
single = x: lib.optional (x != null) x;
in
lib.checkListOfEnum "${pname}: alt variants" [ "normal" "alt" "all" ] altVariants
lib.checkListOfEnum "${pname}: color variants" [ "light" "dark" ] colorVariants
lib.checkListOfEnum "${pname}: opacity variants" [ "normal" "solid" ] opacityVariants
lib.checkListOfEnum "${pname}: theme variants" [ "default" "blue" "purple" "pink" "red" "orange" "yellow" "green" "grey" "all" ] themeVariants
lib.checkListOfEnum "${pname}: nautilus sidebar minimum width" [ "default" "180" "220" "240" "260" "280" ] (single nautilusSize)
lib.checkListOfEnum "${pname}: panel opacity" [ "default" "30" "45" "60" "75" ] (single panelOpacity)
lib.checkListOfEnum "${pname}: panel size" [ "default" "smaller" "bigger" ] (single panelSize)
2021-06-23 19:04:54 +00:00
stdenv.mkDerivation rec {
pname = "whitesur-gtk-theme";
version = "2022-10-27";
2021-06-23 19:04:54 +00:00
src = fetchFromGitHub {
owner = "vinceliuice";
repo = pname;
rev = version;
sha256 = "sha256-jOrTasnkNExCgvST+09JOQ0iosjoEu3aoj3C1pNHTgY=";
2021-06-23 19:04:54 +00:00
};
nativeBuildInputs = [
glib
gnome-shell
jdupes
2021-06-23 19:04:54 +00:00
libxml2
sassc
util-linux
];
buildInputs = [
gnome-themes-extra # adwaita engine for Gtk2
];
postPatch = ''
find -name "*.sh" -print0 | while IFS= read -r -d ''' file; do
patchShebangs "$file"
done
2021-06-23 19:04:54 +00:00
# Do not provide `sudo`, as it is not needed in our use case of the install script
substituteInPlace lib-core.sh --replace '$(which sudo)' false
# Provides a dummy home directory
substituteInPlace lib-core.sh --replace 'MY_HOME=$(getent passwd "''${MY_USERNAME}" | cut -d: -f6)' 'MY_HOME=/tmp'
2021-06-23 19:04:54 +00:00
'';
dontBuild = true;
installPhase = ''
runHook preInstall
2021-06-23 19:04:54 +00:00
mkdir -p $out/share/themes
./install.sh \
${toString (map (x: "--alt " + x) altVariants)} \
${toString (map (x: "--color " + x) colorVariants)} \
${toString (map (x: "--opacity " + x) opacityVariants)} \
${toString (map (x: "--theme " + x) themeVariants)} \
${lib.optionalString (nautilusSize != null) ("--size " + nautilusSize)} \
${lib.optionalString (panelOpacity != null) ("--panel-opacity " + panelOpacity)} \
${lib.optionalString (panelSize != null) ("--panel-size " + panelSize)} \
--dest $out/share/themes
jdupes --quiet --link-soft --recurse $out/share
2021-06-23 19:04:54 +00:00
runHook postInstall
'';
passthru.updateScript = gitUpdater { };
2021-06-23 19:04:54 +00:00
meta = with lib; {
description = "MacOS Big Sur like theme for Gnome desktops";
homepage = "https://github.com/vinceliuice/WhiteSur-gtk-theme";
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}