mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2025-03-31 04:04:55 +00:00
Merge 9bfd9e4a83
into 6a8c72c0cf
This commit is contained in:
commit
ff09bb385a
1 changed files with 2 additions and 1 deletions
|
@ -11,7 +11,7 @@ let
|
|||
partitionModule = { config, options, name, ... }: {
|
||||
options = {
|
||||
extraInputsFlake = mkOption {
|
||||
type = types.raw;
|
||||
type = types.either types.path types.str;
|
||||
default = { };
|
||||
description = ''
|
||||
Location of a flake whose inputs to add to the inputs module argument in the partition.
|
||||
|
@ -74,6 +74,7 @@ let
|
|||
p = options.extraInputsFlake.value;
|
||||
flake =
|
||||
if builtins.typeOf p == "path"
|
||||
|| (builtins.typeOf p == "string" && lib.strings.hasPrefix "${builtins.storeDir}/" p)
|
||||
then get-flake p
|
||||
else builtins.getFlake p;
|
||||
in
|
||||
|
|
Loading…
Add table
Reference in a new issue