repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git]
/
lib
/
tests
/
modules
/
types-anything
/
attrs-coercible.nix
blob
085cbd638f17f104ad979a2eae60ed8e89206898
1
{ lib, ... }: {
2
3
options.value = lib.mkOption {
4
type = lib.types.anything;
5
};
6
7
config.value = {
8
outPath = "foo";
9
err = throw "err";
10
};
11
12
}