forked from mirrors/nixpkgs
make-bootstrap-tools-cross.nix: Support 'dist' target
This commit is contained in:
parent
5cbb6ac151
commit
53c039b96a
|
@ -247,6 +247,15 @@ rec {
|
|||
allowedReferences = [];
|
||||
};
|
||||
|
||||
dist = stdenv.mkDerivation {
|
||||
name = "stdenv-bootstrap-tools-cross";
|
||||
|
||||
buildCommand = ''
|
||||
mkdir -p $out/nix-support
|
||||
echo "file tarball ${build}/on-server/bootstrap-tools.tar.xz" >> $out/nix-support/hydra-build-products
|
||||
echo "file busybox ${build}/on-server/busybox" >> $out/nix-support/hydra-build-products
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
||||
); in {
|
||||
|
|
Loading…
Reference in a new issue