lix/tests/user-envs.nix
regnat 250f8a4bba Escape ${ in strings when printing Nix expressions
Otherwise the result of the printing can't be parsed back correctly by
Nix (because the unescaped `${` will be parsed as the begining of an
anti-quotation).

Fix #3989
2020-09-14 17:19:25 +02:00

30 lines
562 B
Nix

# Some dummy arguments...
{ foo ? "foo"
}:
with import ./config.nix;
assert foo == "foo";
let
makeDrv = name: progName: (mkDerivation {
inherit name progName system;
builder = ./user-envs.builder.sh;
} // {
meta = {
description = "A silly test package with some \${escaped anti-quotation} in it";
};
});
in
[
(makeDrv "foo-1.0" "foo")
(makeDrv "foo-2.0pre1" "foo")
(makeDrv "bar-0.1" "bar")
(makeDrv "foo-2.0" "foo")
(makeDrv "bar-0.1.1" "bar")
(makeDrv "foo-0.1" "foo" // { meta.priority = 10; })
]