forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / stdenv / darwin / bootstrap-tools.nix
bloba3a9f17fb8098d9d1a4b27b22c21cb7cc3c648b1
2   lib,
3   stdenv,
4   bootstrapTools,
5   unpack,
6 }:
8 builtins.derivation {
9   inherit (stdenv.hostPlatform) system;
11   name = "bootstrap-tools";
12   builder = "${unpack}/bin/bash";
14   args = [
15     "${unpack}/bootstrap-tools-unpack.sh"
16     bootstrapTools
17   ];
19   PATH = lib.makeBinPath [
20     (builtins.placeholder "out")
21     unpack
22   ];
24   allowedReferences = [ "out" ];