mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
19 lines
420 B
Diff
19 lines
420 B
Diff
--- runit-2.1.2/src/print-ar.sh
|
|
+++ runit-2.1.2/src/print-ar.sh
|
|
@@ -1,7 +1,7 @@
|
|
cat warn-auto.sh
|
|
echo 'main="$1"; shift'
|
|
echo 'rm -f "$main"'
|
|
-echo 'ar cr "$main" ${1+"$@"}'
|
|
+echo '$AR cr "$main" ${1+"$@"}'
|
|
case "`cat systype`" in
|
|
sunos-5.*) ;;
|
|
unix_sv*) ;;
|
|
@@ -10,5 +10,5 @@ case "`cat systype`" in
|
|
dgux-*) ;;
|
|
hp-ux-*) ;;
|
|
sco*) ;;
|
|
- *) echo 'ranlib "$main"' ;;
|
|
+ *) echo '$RANLIB "$main"' ;;
|
|
esac
|