holy carp rose pine

This commit is contained in:
atagen 2023-05-21 03:06:20 +10:00
parent 1fbcd75f4f
commit d8ffd94212
6 changed files with 81 additions and 28 deletions

View file

@ -7,14 +7,14 @@
gtk_engines,
}:
stdenv.mkDerivation rec {
pname = "gruvbox-gtk-theme";
pname = "rose-pine-gtk-theme";
version = "unstable-2023-05-20";
src = fetchFromGitHub {
owner = "Fausto-Korpsvart";
repo = "Gruvbox-GTK-Theme";
rev = "5927e8693a70619b45fbe3317c59f04f6e101943";
sha256 = lib.fakeSha256;
repo = "Rose-Pine-GTK-Theme";
rev = "95aa1f2b2cc30495b1fc5b614dc555b3eef0e27d";
sha256 = "sha256-I9UnEhXdJ+HSMFE6R+PRNN3PT6ZAAzqdtdQNQWt7o4Y=";
};
buildInputs = [
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
installPhase = ''
runHook preInstall
mkdir -p $out/share/themes
cp -a themes/Grubvox-Dark-B $out/share/themes
cp -a themes/RosePine-Main-B $out/share/themes/RosePine-Main
runHook postInstall
'';
}