about summary refs log tree commit diff
path: root/pkgs/build-support/nuke-references
AgeCommit message (Collapse)AuthorFilesLines
2024-01-05nuke-references: add meta.mainProgramAdam Stephens1-0/+2
2023-02-13treewide: use optionalStringFelix Buehler1-1/+1
2022-12-08treewide: fix some core package structuredAttrsArtturin1-4/+6
2022-05-25treewide: add enableParallelBuilding's to bootstrap packages so hashes stay ↵Artturin1-0/+1
the same when enableParallelBuildingByDefault is enabled verified with `nix-diff $(nix eval ".#gcc-unwrapped.drvPath") $(nix eval --expr 'with import ./. { config = { enableParallelBuildingByDefault = true; }; }; gcc-unwrapped.drvPath' --impure)`
2022-05-22treewide: enable strictDeps in bootstrap packagesArtturin1-0/+1
2021-05-17nukeReferences: fix code signatures on aarch64-darwinAndrew Childs4-31/+64
2019-10-11nukeReferences: Use stdenvNoCCEelco Dolstra1-2/+3
2019-05-03nukeReferences: fix for store paths with special characters (like '+' or '.')Dmitry Kalinkin1-2/+2
This introduces extra escaping for $NIX_STORE that gets interpolated into a PCRE. The escaping is performed using a standard Perl function "quotemeta" (see "perldoc -f quotemeta" for reference). The same value is also used in sed regex which uses POSIX basic regular expressions instead of PCRE, so it needs fewer characters to be escaped. It should not cause much problem to not change sed invocation, but I replace it with equivalent Perl expression (actually the behavior is changed to not output a newline character after the matched output).
2015-10-18nuke-references: support -e optionNikolay Amiantov2-7/+23
2012-01-18* "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointlessEelco Dolstra1-1/+1
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
2011-10-28nuke-refs: Don't assume /nix/storeShea Levy1-1/+1
svn path=/nixpkgs/trunk/; revision=30090
2009-01-29* Use the sh from klibc in the bootstrap. It's a lot smaller thanEelco Dolstra1-1/+1
bash. Also, use the cpio from klibc instead of tar. svn path=/nixpkgs/branches/stdenv-updates/; revision=13905
2009-01-16* Ignore symlinks.Eelco Dolstra1-3/+5
svn path=/nixpkgs/branches/stdenv-updates/; revision=13790
2006-11-03* Turn the nukeRefs() function into a separate program.Eelco Dolstra2-0/+23
svn path=/nixpkgs/trunk/; revision=6941