nix/pkgs/catppuccin-theme.nix
2023-02-27 09:48:00 -05:00

23 lines
440 B
Nix

{
pkgs,
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation rec {
phases = ["unpackPhase" "installPhase"];
name = "catppuccin-theme";
src = fetchFromGitHub {
owner = "catppuccin";
repo = "base16";
rev = "ca74b4070d6ead4213e92da1273fcc1853de7af8";
sha256 = "1h37bjmr2b96l239ckv5iq8cyvpm4bwnqgl21s4k65mikycfr43x";
};
installPhase = ''
ls -1l
install -d $out
install base16/*.yaml $out
'';
}