60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
|
{
|
||
|
lib,
|
||
|
stdenvNoCC,
|
||
|
fetchFromGitHub,
|
||
|
gnome,
|
||
|
sassc,
|
||
|
gnome-themes-extra,
|
||
|
gtk-engine-murrine,
|
||
|
colorVariants ? [] # default: install all icons
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
pname = "tokyonight-gtk-theme";
|
||
|
colorVariantList = [
|
||
|
"dark"
|
||
|
"light"
|
||
|
];
|
||
|
|
||
|
in
|
||
|
lib.checkListOfEnum "${pname}: colorVariants" colorVariantList colorVariants
|
||
|
|
||
|
stdenvNoCC.mkDerivation {
|
||
|
inherit pname;
|
||
|
version = "0-unstable-2024-06-27";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Fausto-Korpsvart";
|
||
|
repo = "Tokyonight-GTK-Theme";
|
||
|
rev = "2f566d89856516bef988df3cc32261f752299886";
|
||
|
hash = "sha256-oKqLb66N4swHfhjUZJIGryE0D9MkuLdKFQa6j3TFmOg=";
|
||
|
};
|
||
|
|
||
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
||
|
|
||
|
nativeBuildInputs = [ gnome.gnome-shell sassc ];
|
||
|
buildInputs = [ gnome-themes-extra ];
|
||
|
|
||
|
dontBuild = true;
|
||
|
|
||
|
postPatch = ''
|
||
|
patchShebangs themes/install.sh
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
mkdir -p $out/share/themes
|
||
|
cd themes
|
||
|
./install.sh -n Tokyonight -c ${lib.concatStringsSep " " (if colorVariants != [] then colorVariants else colorVariantList)} --tweaks macos -d "$out/share/themes"
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "GTK theme based on the Tokyo Night colour palette";
|
||
|
homepage = "https://github.com/Fausto-Korpsvart/Tokyonight-GTK-Theme";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ garaiza-93 Madouura d3vil0p3r ];
|
||
|
platforms = platforms.unix;
|
||
|
};
|
||
|
}
|