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