nix-bundle/makeself.nix
2016-06-14 20:39:10 +00:00

15 lines
244 B
Nix

{ stdenv, makeself }:
{ name
, archive
, startup
}:
stdenv.mkDerivation {
inherit name archive startup;
nativeBuildInputs = [ makeself ];
buildCommand = ''
${makeself}/bin/makeself $archive $out $name $startup
'';
}