mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +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.
15 lines
581 B
Diff
15 lines
581 B
Diff
diff --git a/FindMagic_EP.cmake b/FindMagic_EP.cmake
|
|
--- a/cmake/Modules/FindMagic_EP.cmake
|
|
+++ b/cmake/Modules/FindMagic_EP.cmake
|
|
@@ -126,9 +126,7 @@ if(NOT TILEDB_LIBMAGIC_EP_BUILT)
|
|
# that was modified by tiledb to also build with cmake for nix
|
|
ExternalProject_Add(ep_magic
|
|
PREFIX "externals"
|
|
- GIT_REPOSITORY "https://github.com/TileDB-Inc/file-windows.git"
|
|
- GIT_TAG "5.38.2.tiledb"
|
|
- GIT_SUBMODULES_RECURSE TRUE
|
|
+ DOWNLOAD_COMMAND true
|
|
UPDATE_COMMAND ""
|
|
CMAKE_ARGS
|
|
-DCMAKE_INSTALL_PREFIX=${TILEDB_EP_INSTALL_PREFIX}
|