diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2018-04-19T13·28+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2018-04-19T13·29+0200 |
commit | a99027d5870a772db550f741cb62aee612fcd5da (patch) | |
tree | 8be67e0aa131c21d1de89ea25758f13f27315a59 | |
parent | 6f907b7571c792a8e33173fe41264b9cd0b750d9 (diff) |
Fix tests.evalNixOS
This failed because NixOS' release.nix calls builtins.fetchGit.
-rw-r--r-- | release.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release.nix b/release.nix index 9778b2db68a3..37deb8e7ee38 100644 --- a/release.nix +++ b/release.nix @@ -268,7 +268,8 @@ let export NIX_STATE_DIR=$TMPDIR nix-store --init - nix-instantiate ${nixpkgs}/nixos/release-combined.nix -A tested --dry-run + nix-instantiate ${nixpkgs}/nixos/release-combined.nix -A tested --dry-run \ + --arg nixpkgs '{ outPath = ${nixpkgs}; revCount = 123; shortRev = "abcdefgh"; }' touch $out ''; |