repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git]
/
pkgs
/
stdenv
/
darwin
/
bootstrap-tools.nix
blob
a3a9f17fb8098d9d1a4b27b22c21cb7cc3c648b1
1
{
2
lib,
3
stdenv,
4
bootstrapTools,
5
unpack,
6
}:
7
8
builtins.derivation {
9
inherit (stdenv.hostPlatform) system;
10
11
name = "bootstrap-tools";
12
builder = "${unpack}/bin/bash";
13
14
args = [
15
"${unpack}/bootstrap-tools-unpack.sh"
16
bootstrapTools
17
];
18
19
PATH = lib.makeBinPath [
20
(builtins.placeholder "out")
21
unpack
22
];
23
24
allowedReferences = [ "out" ];
25
}