add gtk-theme-mac-os-9

This commit is contained in:
Alex 2024-07-31 20:13:28 -04:00
parent 1e72f4b1e9
commit 7829c48024
2 changed files with 33 additions and 1 deletions

View File

@ -10,6 +10,7 @@
atauPkgs = {
atau-wallpapers = pkgs.callPackage ./atau-wallpapers/default.nix { };
theme-platinum9 = pkgs.callPackage ./theme-platinum9/default.nix { };
gtk-theme-mac-os-9 = pkgs.callPackage ./gtk-theme-mac-os-9 { };
};
in
{
@ -17,6 +18,8 @@
default = atauPkgs.theme-platinum9;
} // atauPkgs;
overlays.default = final: prev: atauPkgs;
overlays.default = final: prev: {
atau-pkgs = atauPkgs;
};
};
}

View File

@ -0,0 +1,29 @@
{ lib, stdenv }:
stdenv.mkDerivation rec {
name = "gtk-theme-mac-os-9";
pname = name;
version = "ca8a5d2a3fb1976cf904133574a3d0022ac2cf71";
src = fetchGit {
url = "https://github.com/B00merang-Project/Mac-OS-9.git";
rev = version;
};
installPhase = ''
runHook preInstall
# Install themes
mkdir -p "$out/share/themes/Mac-OS-9"
mv * "$out/share/themes/Mac-OS-9"
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/B00merang-Project/Mac-OS-9";
description = "The classic look of Mac OS 9, now for GTK 3 desktops";
platforms = platforms.unix;
maintainers = with maintainers; [ atau ];
};
}