mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +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.
35 lines
745 B
Diff
35 lines
745 B
Diff
diff -rc read.c read.c
|
|
*** read.c 2006-03-17 15:24:20.000000000 +0100
|
|
--- read.c 2007-05-24 17:16:31.000000000 +0200
|
|
***************
|
|
*** 99,107 ****
|
|
--- 99,109 ----
|
|
#endif
|
|
INCLUDEDIR,
|
|
#ifndef _AMIGA
|
|
+ #if 0
|
|
"/usr/gnu/include",
|
|
"/usr/local/include",
|
|
"/usr/include",
|
|
+ #endif
|
|
#endif
|
|
0
|
|
};
|
|
diff -rc reremake.c
|
|
*** remake.c 2006-03-20 03:36:37.000000000 +0100
|
|
--- remake.c 2007-05-24 17:06:54.000000000 +0200
|
|
***************
|
|
*** 1452,1460 ****
|
|
--- 1452,1462 ----
|
|
static char *dirs[] =
|
|
{
|
|
#ifndef _AMIGA
|
|
+ #if 0
|
|
"/lib",
|
|
"/usr/lib",
|
|
#endif
|
|
+ #endif
|
|
#if defined(WINDOWS32) && !defined(LIBDIR)
|
|
/*
|
|
* This is completely up to the user at product install time. Just define
|