1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-31 04:04:55 +00:00
This commit is contained in:
Robert Hensing 2024-09-12 16:45:45 +02:00 committed by GitHub
commit ff09bb385a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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