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
opencomposite: add meta.platforms (#357198)
[NixPkgs.git]
/
lib
/
tests
/
modules
/
define-freeform-keywords-shorthand.nix
blob
8de1ec6a74752812bd50d8b9b0e58b4355996b0c
1
{ config, ... }: {
2
class = { "just" = "data"; };
3
a = "one";
4
b = "two";
5
meta = "meta";
6
7
_module.args.result =
8
let r = builtins.removeAttrs config [ "_module" ];
9
in builtins.trace (builtins.deepSeq r r) (r == {
10
a = "one";
11
b = "two";
12
class = { "just" = "data"; };
13
meta = "meta";
14
});
15
}