mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 20:34:06 +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.
24 lines
638 B
Diff
24 lines
638 B
Diff
diff --git a/Makefile b/Makefile
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -52,7 +52,7 @@ clean:
|
|
replaced/%: %
|
|
mkdir -p $(dir $@)
|
|
sed < $< > $@ \
|
|
- -e 's:__SYSSHAREDIR_PREFIX__:$(PREFIX):' \
|
|
+ -e 's:__SYSSHAREDIR_PREFIX__:$(DESTDIR):' \
|
|
-e 's:__SYSCONFDIR_PREFIX__:$(ETCPREFIX):' \
|
|
-e 's:__SYSDATADIR_PREFIX__:$(LOCALSTATEDIR):'
|
|
|
|
diff --git a/src/share/keytrans b/src/share/keytrans
|
|
--- a/src/share/keytrans
|
|
+++ b/src/share/keytrans
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/perl -T
|
|
+#!/usr/bin/perl
|
|
|
|
# keytrans: this is an RSA key translation utility; it is capable of
|
|
# transforming RSA keys (both public keys and secret keys) between
|
|
--
|
|
2.16.3
|