nix-bundle/makebootstrap.nix
Matthew Bauer 97dd6220f8 Pull sources into repo.
nix-user-chroot now uses local version instead of lethalman's
2016-06-15 16:23:19 +00:00

12 lines
216 B
Nix

{makeself, makedir}:
{ name, target, run }:
makeself {
inherit name;
startup = ".${target}${run}";
archive = makedir {
name = "${name}-dir";
toplevel = target;
};
}