nixpkgs/pkgs/tools/admin/itamae/default.nix
2024-02-11 03:19:15 +01:00

19 lines
476 B
Nix

{ 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";
};
}