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.
16 lines
446 B
Diff
16 lines
446 B
Diff
diff --git a/src/nnn.c b/src/nnn.c
|
|
index b3c0f986..c74e1ec9 100644
|
|
--- a/src/nnn.c
|
|
+++ b/src/nnn.c
|
|
@@ -508,9 +508,7 @@ alignas(max_align_t) static char g_pipepath[TMP_LEN_MAX];
|
|
static runstate g_state;
|
|
|
|
/* Options to identify file MIME */
|
|
-#if defined(__APPLE__)
|
|
-#define FILE_MIME_OPTS "-bIL"
|
|
-#elif !defined(__sun) /* no MIME option for 'file' */
|
|
+#if !defined(__sun) /* no MIME option for 'file' */
|
|
#define FILE_MIME_OPTS "-biL"
|
|
#endif
|
|
|