mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 13:14:42 +00:00
Remove optional builtins prefixes from prelude functions by running:
builtins=(
abort
baseNameOf
break
derivation
derivationStrict
dirOf
false
fetchGit
fetchMercurial
fetchTarball
fetchTree
fromTOML
import
isNull
map
null
placeholder
removeAttrs
scopedImport
throw
toString
true
)
fd \
--type file \
. \
pkgs \
--exec-batch sed --in-place --regexp-extended "
s/\<builtins\.($(
printf '%s\n' "${builtins[@]}" |
paste --delimiter '|' --serial -
))\>/\1/g
"
nix fmt
26 lines
349 B
Nix
26 lines
349 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
bootstrapTools,
|
|
unpack,
|
|
}:
|
|
|
|
derivation {
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
name = "bootstrap-tools";
|
|
builder = "${unpack}/bin/bash";
|
|
|
|
args = [
|
|
"${unpack}/bootstrap-tools-unpack.sh"
|
|
bootstrapTools
|
|
];
|
|
|
|
PATH = lib.makeBinPath [
|
|
(placeholder "out")
|
|
unpack
|
|
];
|
|
|
|
allowedReferences = [ "out" ];
|
|
}
|