populate: add derivation type

This commit is contained in:
lassulus 2018-12-01 04:20:50 +01:00
parent eb68146cc4
commit 140bdfdf6c
2 changed files with 19 additions and 0 deletions

View File

@ -11,6 +11,14 @@
else throw "cannot determine type";
type = lib.types.enum known-types;
};
derivation = lib.mkOption {
apply = x:
if lib.types.str.check x
then { text = x; }
else x;
default = null;
type = lib.types.nullOr (lib.types.either lib.types.str source-types.derivation);
};
file = lib.mkOption {
apply = x:
if lib.types.absolute-pathname.check x
@ -47,6 +55,13 @@
});
source-types = {
derivation = lib.types.submodule {
options = {
text = lib.mkOption {
type = lib.types.str;
};
};
};
file = lib.types.submodule {
options = {
path = lib.mkOption {

View File

@ -20,6 +20,10 @@ let
fi
'';
pop.derivation = target: source: shell' target /* sh */ ''
nix-build -E ${quote source.text} -o ${quote target.path}
'';
pop.file = target: source: let
configAttrs = ["useChecksum"];
config = filterAttrs (name: _: elem name configAttrs) source;