nix/pkgs/catppuccin-btop.nix

24 lines
431 B
Nix
Raw Normal View History

2022-10-05 22:17:21 +00:00
{
pkgs,
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation rec {
2022-10-05 22:17:21 +00:00
phases = ["unpackPhase" "installPhase"];
2022-10-05 22:17:21 +00:00
name = "catppuccin-btop";
src = fetchFromGitHub {
owner = "catppuccin";
repo = "btop";
rev = "ecb8562bb6181bb9f2285c360bbafeb383249ec3";
sha256 = "0sfyf44lwmf4mkd4gjkw82wn7va56c8xy06cx4q6b3drjfx6vxd2";
};
2022-10-05 22:17:21 +00:00
installPhase = ''
ls -1l
install -d $out
install *.theme $out
'';
}