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
/
doRename-basic.nix
blob
9d79fa4f26a3b9bb3a50f8371f95f2936c9cb4f7
1
{ lib, ... }: {
2
imports = [
3
(lib.doRename { from = ["a" "b"]; to = ["c" "d" "e"]; warn = true; use = x: x; visible = true; })
4
];
5
options = {
6
c.d.e = lib.mkOption {};
7
};
8
config = {
9
a.b = 1234;
10
};
11
}