1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-19 16:09:19 +03:00
nixpkgs/lib/tests/packages-from-directory/scope/my-namespace/d.nix

6 lines
129 B
Nix
Raw Permalink Normal View History

{ a, e }:
# Check we can get parameter from the parent scope(s) as well as the current one
assert a == "a";
assert e == "e";
"d"