nix-bundle/default.nix

120 lines
3.5 KiB
Nix
Raw Normal View History

{nixpkgs ? import <nixpkgs> {}}:
with nixpkgs;
let
arx' = haskellPackages.arx.overrideAttrs (o: {
patchPhase = (o.patchPhase or "") + ''
substituteInPlace model-scripts/tmpx.sh \
2018-04-25 22:29:51 +03:00
--replace /tmp/ \$HOME/.cache/
'';
});
in rec {
toStorePath = target:
# If a store path has been given but is not a derivation, add the missing context
# to it so it will be propagated properly as a build input.
if !(lib.isDerivation target) && lib.isStorePath target then
let path = toString target; in
builtins.appendContext path { "${path}" = { path = true; }; }
# Otherwise, add to the store. This takes care of appending the store path
# in the context automatically.
else "${target}";
arx = { archive, startup}:
stdenv.mkDerivation {
name = "arx";
buildCommand = ''
${arx'}/bin/arx tmpx --shared -rm! ${archive} -o $out // ${startup}
chmod +x $out
'';
};
maketar = { targets }:
stdenv.mkDerivation {
name = "maketar";
2017-04-30 09:48:41 +03:00
buildInputs = [ perl ];
exportReferencesGraph = map (x: [("closure-" + baseNameOf x) x]) targets;
buildCommand = ''
2017-04-27 07:03:01 +03:00
storePaths=$(perl ${pathsFromGraph} ./closure-*)
2017-04-30 10:09:34 +03:00
tar -cf - \
--owner=0 --group=0 --mode=u+rw,uga+r \
--hard-dereference \
2017-04-30 10:09:34 +03:00
$storePaths | bzip2 -z > $out
'';
};
2017-04-27 07:03:01 +03:00
# TODO: eventually should this go in nixpkgs?
nix-user-chroot = lib.makeOverridable stdenv.mkDerivation {
2017-11-09 05:46:55 +03:00
name = "nix-user-chroot-2c52b5f";
src = ./nix-user-chroot;
makeFlags = [];
2017-04-30 03:53:32 +03:00
# hack to use when /nix/store is not available
postFixup = ''
exe=$out/bin/nix-user-chroot
patchelf \
--set-interpreter .$(patchelf --print-interpreter $exe) \
--set-rpath $(patchelf --print-rpath $exe | sed 's|/nix/store/|./nix/store/|g') \
$exe
'';
2017-02-07 01:17:20 +03:00
installPhase = ''
2017-04-30 03:53:32 +03:00
runHook preInstall
mkdir -p $out/bin/
cp nix-user-chroot $out/bin/nix-user-chroot
2017-04-30 03:53:32 +03:00
runHook postInstall
'';
meta.platforms = lib.platforms.linux;
2017-02-07 01:17:20 +03:00
};
makebootstrap = { targets, startup }:
arx {
inherit startup;
archive = maketar {
inherit targets;
};
};
makeStartup = { target, nixUserChrootFlags, nix-user-chroot', run, initScript }:
let
# Avoid re-adding a store path into the store
path = toStorePath target;
in
writeScript "startup" ''
#!/bin/sh
${initScript}
.${nix-user-chroot'}/bin/nix-user-chroot -n ./nix ${nixUserChrootFlags} -- ${path}${run} "$@"
'';
nix-bootstrap = { target, extraTargets ? [], run, nix-user-chroot' ? nix-user-chroot, nixUserChrootFlags ? "", initScript ? "" }:
let
script = makeStartup { inherit target nixUserChrootFlags nix-user-chroot' run initScript; };
in makebootstrap {
2018-04-04 23:04:37 +03:00
startup = ".${script} '\"$@\"'";
targets = [ "${script}" ] ++ extraTargets;
2017-04-30 03:53:32 +03:00
};
nix-bootstrap-nix = {target, run, extraTargets ? []}:
nix-bootstrap-path {
inherit target run;
extraTargets = [ gnutar bzip2 xz gzip coreutils bash ];
};
2017-04-30 03:53:32 +03:00
# special case adding path to the environment before launch
nix-bootstrap-path = let
nix-user-chroot'' = targets: nix-user-chroot.overrideDerivation (o: {
buildInputs = o.buildInputs ++ targets;
makeFlags = o.makeFlags ++ [
''ENV_PATH="${lib.makeBinPath targets}"''
2017-04-30 03:53:32 +03:00
];
}); in { target, extraTargets ? [], run, initScript ? "" }: nix-bootstrap {
inherit target extraTargets run initScript;
2017-04-30 03:53:32 +03:00
nix-user-chroot' = nix-user-chroot'' extraTargets;
};
}