14 lines
243 B
Nix
14 lines
243 B
Nix
|
{ 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
|
||
|
'';
|
||
|
}
|