mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
71a1350732
Necessary since an update caused the YAML structure to change. Will be able to remove this once the Qt pull request for stylix gets merged upstream. Old:2b6f2d0677/3024.yaml
New:ae4ce8b0d1/base16/3024.yaml
26 lines
614 B
Nix
26 lines
614 B
Nix
{
|
|
nixpkgs.overlays = [
|
|
(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
|
|
'';
|
|
});
|
|
})
|
|
];
|
|
}
|