nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 48 lines 876 B view raw
1{ 2 "array2d" = [ 3 [ 4 1, 5 2, 6 "a" 7 ], 8 [ 9 2, 10 1, 11 "b" 12 ] 13 ] 14 "cursed \" .attrs \" " = { 15 "a" = 1 16 "a b" = ${?a} 17 "a b c" = ${?a b} 18 } 19 "misc attrs" = { 20 "x" = 1 21 "y" += { 22 "a" = 1 23 } 24 } 25 "nasty_string" = "\"@\n\\\t^*bf\n0\";'''$" 26 "nested" = { 27 "attrset" = { 28 "has" = { 29 "a" = { 30 "integer" = { 31 "value" = 100 32 } 33 } 34 } 35 } 36 } 37 "simple_top_level_attr" = "1.0" 38 "some_floaty" = 29.95 39 "to_include" = { 40 include "/nix/store/ccnzr53dpipdacxgci3ii3bqacvb5hxm-hocon-test-include.conf" 41 include "https://example.com" 42 include required(file("/nix/store/ccnzr53dpipdacxgci3ii3bqacvb5hxm-hocon-test-include.conf")) 43 include "/nix/store/ccnzr53dpipdacxgci3ii3bqacvb5hxm-hocon-test-include.conf" 44 include url("https://example.com") 45 46 } 47} 48