nixos-configs/pkgs/dracula/bat.nix

16 lines
207 B
Nix
Raw Normal View History

{
bat-theme-src,
stdenv,
...
}:
stdenv.mkDerivation {
pname = "dracula-bat";
version = bat-theme-src.shortRev;
src = bat-theme-src;
installPhase = ''
cat ./Dracula.tmTheme > $out
'';
}