62 lines
1.4 KiB
Nix
62 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, glib
|
|
, gnome-shell
|
|
, gnome-themes-extra
|
|
, libxml2
|
|
, sassc
|
|
, util-linux
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "whitesur-gtk-theme";
|
|
version = "2021-07-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vinceliuice";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "17x4lqlv6whx8vg0c1nm89j7671l033apn4alqyhjb9qx5w2fa43";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
glib
|
|
gnome-shell
|
|
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
|
|
|
|
# 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'
|
|
'';
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/share/themes
|
|
./install.sh --dest $out/share/themes --alt all --theme all
|
|
runHook postInstall
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|