nixos-configs/scopedPackages/dracula/bat/default.nix

27 lines
438 B
Nix
Raw Normal View History

{
2025-02-18 15:19:08 -05:00
# nix build inputs
lib,
stdenv,
2025-02-18 15:19:08 -05:00
mkVersion,
bat-theme-src,
...
}:
stdenv.mkDerivation {
pname = "dracula-bat";
2024-06-13 22:27:54 -04:00
version = mkVersion bat-theme-src;
src = bat-theme-src;
installPhase = ''
cat ./Dracula.tmTheme > $out
'';
2025-02-18 15:19:08 -05:00
meta = {
license = lib.licenses.mit;
homepage = "https://github.com/matt1432/bat";
description = ''
Dark theme for bat based on the Dracula Sublime theme.
'';
};
}