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

@ -1,8 +1,10 @@
{pkgs, ...}: {
hyprland-system76-scheduler-integration = pkgs.callPackage ./hyprland-system76-scheduler-integration.nix {};
culr = pkgs.callPackage ./culr.nix {};
gruvbox-kvantum = pkgs.callPackage ./gruvbox-kvantum.nix {};
gruvbox-gtk-theme = pkgs.callPackage ./gruvbox-gtk-theme.nix {};
rose-pine-theme = pkgs.callPackage ./rose-pine-theme.nix {};
rose-pine-icons = pkgs.callPackage ./rose-pine-icons.nix {};
# gruvbox-kvantum = pkgs.callPackage ./gruvbox-kvantum.nix {};
# gruvbox-gtk-theme = pkgs.callPackage ./gruvbox-gtk-theme.nix {};
# system76-scheduler = pkgs.callPackage ./system76-scheduler.nix {};
# swayosd = pkgs.callPackage ./swayosd.nix {};
# fuzzel = pkgs.callPackage ./fuzzel.nix {};

35
pkgs/rose-pine-icons.nix Normal file
View file

@ -0,0 +1,35 @@
{
stdenv,
fetchFromGitHub,
lib,
gnome-themes-extra,
gtk-engine-murrine,
gtk_engines,
}:
stdenv.mkDerivation rec {
pname = "rose-pine-icons";
version = "unstable-2023-05-20";
src = fetchFromGitHub {
owner = "Fausto-Korpsvart";
repo = "Rose-Pine-GTK-Theme";
rev = "95aa1f2b2cc30495b1fc5b614dc555b3eef0e27d";
sha256 = "sha256-I9UnEhXdJ+HSMFE6R+PRNN3PT6ZAAzqdtdQNQWt7o4Y=";
};
buildInputs = [
gnome-themes-extra # adwaita engine for Gtk2
gtk_engines # pixmap engine for Gtk2
];
propagatedUserEnvPkgs = [
gtk-engine-murrine # murrine engine for Gtk2
];
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
cp -a icons/Rose-Pine $out/share/icons/Rose-Pine
runHook postInstall
'';
}

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
'';
}