depot/third_party/nixpkgs/pkgs/tools/admin/puppet/puppet-bolt/default.nix

14 lines
243 B
Nix
Raw Normal View History

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