nix/pkgs/catppuccin-bat.nix
2022-10-05 18:17:21 -04:00

23 lines
432 B
Nix

{
pkgs,
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation rec {
phases = ["unpackPhase" "installPhase"];
name = "catppuccin-btop";
src = fetchFromGitHub {
owner = "catppuccin";
repo = "bat";
rev = "f0dedf515c02799b76a2804db9815a479f6c0075";
sha256 = "0z1pxk21f770xqhd9gxiwls018rla3qg667i6x3z9cjbgwv6mlbi";
};
installPhase = ''
ls -1l
install -d $out
install *.tmTheme $out
'';
}