depot/third_party/nixpkgs/pkgs/stdenv/darwin/bootstrap-tools.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

25 lines
367 B
Nix

{
lib,
stdenv,
bootstrapTools,
unpack,
}:
builtins.derivation {
inherit (stdenv.hostPlatform) system;
name = "bootstrap-tools";
builder = "${unpack}/bin/bash";
args = [
"${unpack}/bootstrap-tools-unpack.sh"
bootstrapTools
];
PATH = lib.makeBinPath [
(builtins.placeholder "out")
unpack
];
allowedReferences = [ "out" ];
}