1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-11 21:17:45 +03:00

examples/testing/qemu-cryptsetup: Provide pkgs correctly to eval-with-configuration.nix

This commit is contained in:
Samuel Dionne-Riel 2021-08-26 16:56:38 -04:00
parent 87659fb962
commit 8d268277af

View File

@ -1,4 +1,6 @@
{ pkgs ? null }@args:
{ pkgs ? (import ../../../pkgs.nix {})
}@args':
let args = args' // { inherit pkgs; }; in
let
system-build = import ../../../lib/eval-with-configuration.nix (args // {