mirror of
https://github.com/NixOS/nix
synced 2025-07-08 06:53:54 +02:00
Merge branch 'master' into overlayfs-store
This commit is contained in:
commit
8225b7a011
12 changed files with 219 additions and 7 deletions
57
tests/lang/eval-fail-toJSON.err.exp
Normal file
57
tests/lang/eval-fail-toJSON.err.exp
Normal file
|
@ -0,0 +1,57 @@
|
|||
error:
|
||||
… while calling the 'toJSON' builtin
|
||||
|
||||
at /pwd/lang/eval-fail-toJSON.nix:1:1:
|
||||
|
||||
1| builtins.toJSON {
|
||||
| ^
|
||||
2| a.b = [
|
||||
|
||||
… while evaluating attribute 'a'
|
||||
|
||||
at /pwd/lang/eval-fail-toJSON.nix:2:3:
|
||||
|
||||
1| builtins.toJSON {
|
||||
2| a.b = [
|
||||
| ^
|
||||
3| true
|
||||
|
||||
… while evaluating attribute 'b'
|
||||
|
||||
at /pwd/lang/eval-fail-toJSON.nix:2:3:
|
||||
|
||||
1| builtins.toJSON {
|
||||
2| a.b = [
|
||||
| ^
|
||||
3| true
|
||||
|
||||
… while evaluating list element at index 3
|
||||
|
||||
… while evaluating attribute 'c'
|
||||
|
||||
at /pwd/lang/eval-fail-toJSON.nix:7:7:
|
||||
|
||||
6| {
|
||||
7| c.d = throw "hah no";
|
||||
| ^
|
||||
8| }
|
||||
|
||||
… while evaluating attribute 'd'
|
||||
|
||||
at /pwd/lang/eval-fail-toJSON.nix:7:7:
|
||||
|
||||
6| {
|
||||
7| c.d = throw "hah no";
|
||||
| ^
|
||||
8| }
|
||||
|
||||
… while calling the 'throw' builtin
|
||||
|
||||
at /pwd/lang/eval-fail-toJSON.nix:7:13:
|
||||
|
||||
6| {
|
||||
7| c.d = throw "hah no";
|
||||
| ^
|
||||
8| }
|
||||
|
||||
error: hah no
|
10
tests/lang/eval-fail-toJSON.nix
Normal file
10
tests/lang/eval-fail-toJSON.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
builtins.toJSON {
|
||||
a.b = [
|
||||
true
|
||||
false
|
||||
"it's a bird"
|
||||
{
|
||||
c.d = throw "hah no";
|
||||
}
|
||||
];
|
||||
}
|
1
tests/lang/eval-okay-flake-ref-to-string.exp
Normal file
1
tests/lang/eval-okay-flake-ref-to-string.exp
Normal file
|
@ -0,0 +1 @@
|
|||
"github:NixOS/nixpkgs/23.05?dir=lib"
|
7
tests/lang/eval-okay-flake-ref-to-string.nix
Normal file
7
tests/lang/eval-okay-flake-ref-to-string.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
builtins.flakeRefToString {
|
||||
type = "github";
|
||||
owner = "NixOS";
|
||||
repo = "nixpkgs";
|
||||
ref = "23.05";
|
||||
dir = "lib";
|
||||
}
|
1
tests/lang/eval-okay-parse-flake-ref.exp
Normal file
1
tests/lang/eval-okay-parse-flake-ref.exp
Normal file
|
@ -0,0 +1 @@
|
|||
{ dir = "lib"; owner = "NixOS"; ref = "23.05"; repo = "nixpkgs"; type = "github"; }
|
1
tests/lang/eval-okay-parse-flake-ref.nix
Normal file
1
tests/lang/eval-okay-parse-flake-ref.nix
Normal file
|
@ -0,0 +1 @@
|
|||
builtins.parseFlakeRef "github:NixOS/nixpkgs/23.05?dir=lib"
|
Loading…
Add table
Add a link
Reference in a new issue