about summary refs log tree commit diff
path: root/pkgs/tools/admin/itamae/default.nix
blob: d84da4fd9741267dd5bb07f1a124b3da0999a75e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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";
  };
}