whitesur-gtk-theme: 2021-06-23 -> 2021-07-27

This commit is contained in:
José Romildo 2021-07-27 16:26:45 -03:00
parent d71d1915bf
commit e91e8a8939
2 changed files with 10 additions and 3 deletions

View file

@ -2,6 +2,7 @@
, stdenv , stdenv
, fetchFromGitHub , fetchFromGitHub
, glib , glib
, gnome-shell
, gnome-themes-extra , gnome-themes-extra
, libxml2 , libxml2
, sassc , sassc
@ -10,17 +11,18 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "whitesur-gtk-theme"; pname = "whitesur-gtk-theme";
version = "2021-06-23"; version = "2021-07-27";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "vinceliuice"; owner = "vinceliuice";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "075fw57mv6zadq4dryn8bg2b3vq8inmisq18s758cv53pprxh9hw"; sha256 = "17x4lqlv6whx8vg0c1nm89j7671l033apn4alqyhjb9qx5w2fa43";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
glib glib
gnome-shell
libxml2 libxml2
sassc sassc
util-linux util-linux
@ -35,6 +37,9 @@ stdenv.mkDerivation rec {
# Do not provide `sudo`, as it is not needed in our use case of the install script # 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 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; dontBuild = true;

View file

@ -22939,7 +22939,9 @@ in
weather-icons = callPackage ../data/fonts/weather-icons { }; weather-icons = callPackage ../data/fonts/weather-icons { };
whitesur-gtk-theme = callPackage ../data/themes/whitesur { }; whitesur-gtk-theme = callPackage ../data/themes/whitesur {
inherit (gnome) gnome-shell;
};
whitesur-icon-theme = callPackage ../data/icons/whitesur-icon-theme { }; whitesur-icon-theme = callPackage ../data/icons/whitesur-icon-theme { };