mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 04:23:47 +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.
32 lines
1.5 KiB
Diff
32 lines
1.5 KiB
Diff
diff --git a/CMakeModules/ForgeConfigureDepsVars.cmake b/CMakeModules/ForgeConfigureDepsVars.cmake
|
|
index ee5c2fc..2f75181 100644
|
|
--- a/CMakeModules/ForgeConfigureDepsVars.cmake
|
|
+++ b/CMakeModules/ForgeConfigureDepsVars.cmake
|
|
@@ -84,7 +84,7 @@ macro(fg_dep_check_and_populate dep_prefix)
|
|
URL ${fdcp_args_URI}
|
|
URL_HASH ${fdcp_args_REF}
|
|
DOWNLOAD_COMMAND \"\"
|
|
- UPDATE_DISCONNECTED ON
|
|
+ UPDATE_COMMAND \"\"
|
|
SOURCE_DIR "${Forge_SOURCE_DIR}/extern/${dep_prefix}-src"
|
|
BINARY_DIR "${Forge_BINARY_DIR}/extern/${dep_prefix}-build"
|
|
SUBBUILD_DIR "${Forge_BINARY_DIR}/extern/${dep_prefix}-subbuild"
|
|
@@ -94,7 +94,7 @@ macro(fg_dep_check_and_populate dep_prefix)
|
|
QUIET
|
|
URL ${fdcp_args_URI}
|
|
DOWNLOAD_COMMAND \"\"
|
|
- UPDATE_DISCONNECTED ON
|
|
+ UPDATE_COMMAND \"\"
|
|
SOURCE_DIR "${Forge_SOURCE_DIR}/extern/${dep_prefix}-src"
|
|
BINARY_DIR "${Forge_BINARY_DIR}/extern/${dep_prefix}-build"
|
|
SUBBUILD_DIR "${Forge_BINARY_DIR}/extern/${dep_prefix}-subbuild"
|
|
@@ -106,7 +106,7 @@ macro(fg_dep_check_and_populate dep_prefix)
|
|
GIT_REPOSITORY ${fdcp_args_URI}
|
|
GIT_TAG ${fdcp_args_REF}
|
|
DOWNLOAD_COMMAND \"\"
|
|
- UPDATE_DISCONNECTED ON
|
|
+ UPDATE_COMMAND \"\"
|
|
SOURCE_DIR "${Forge_SOURCE_DIR}/extern/${dep_prefix}-src"
|
|
BINARY_DIR "${Forge_BINARY_DIR}/extern/${dep_prefix}-build"
|
|
SUBBUILD_DIR "${Forge_BINARY_DIR}/extern/${dep_prefix}-subbuild"
|