about summary refs log tree commit diff
path: root/pkgs/tools/admin/puppet/puppet-bolt/default.nix
blob: 0ad9dc5ec87dbdc7cf90553243684f0b777704fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ bundlerApp, makeWrapper }:

bundlerApp {
  pname = "bolt";
  gemdir = ./.;
  exes = [ "bolt" ];
  buildInputs = [ makeWrapper ];

  postBuild = ''
    # Set BOLT_GEM=1 to remove warning
    wrapProgram $out/bin/bolt --set BOLT_GEM 1
  '';
}