Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
483 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
bundlerApp,
bundlerUpdateScript,
}:
bundlerApp {
pname = "itamae";
gemdir = ./.;
exes = [ "itamae" ];
passthru.updateScript = bundlerUpdateScript "itamae";
meta = with lib; {
description = "Simple and lightweight configuration management tool inspired by Chef";
homepage = "https://itamae.kitchen/";
license = with licenses; mit;
maintainers = with maintainers; [ refi64 ];
platforms = platforms.unix;
mainProgram = "itamae";
};
}