mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-10 16:08:45 +01:00
18acfd0749
Should make it easier for other repositories to use the overlays from this repository.
22 lines
514 B
Nix
22 lines
514 B
Nix
(final: prev: {
|
|
base16-schemes = prev.base16-schemes.overrideAttrs (oldAttrs: {
|
|
version = "unstable-2023-05-02";
|
|
|
|
src = prev.fetchFromGitHub {
|
|
owner = "tinted-theming";
|
|
repo = "base16-schemes";
|
|
rev = "9a4002f78dd1094c123169da243680b2fda3fe69";
|
|
hash = "sha256-AngNF++RZQB0l4M8pRgcv66pAcIPY+cCwmUOd+RBJKA=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/themes/
|
|
install *.yaml $out/share/themes/
|
|
|
|
runHook postInstall
|
|
'';
|
|
});
|
|
})
|