nix-gitea-themes/default.nix

11 lines
200 B
Nix
Raw Normal View History

2024-04-09 00:39:34 +02:00
{ runCommand
, lessc
}:
runCommand "gitea-monokai-theme" {
buildInputs = [ lessc ];
} ''
mkdir $out
lessc ${./theme-monokai.less} $out/share/gitea/custom/public/assets/css/theme-monokai.css
''