diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-12-22T10·33+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-12-22T10·35+0100 |
commit | 6d8087083278b078d0db6238fb16929163388acd (patch) | |
tree | bdb23ca2895364029d0af21e746e7a0c16eb7472 /tests/remote-builds.nix | |
parent | 62e214fa6f34a287f04348b633ba5ef88e06df66 (diff) |
release.nix: Use fetchTarball and fetchGit
In particular, using fetchGit means we don't need hackery to clean the source tree when building from an unclean tree.
Diffstat (limited to 'tests/remote-builds.nix')
-rw-r--r-- | tests/remote-builds.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/remote-builds.nix b/tests/remote-builds.nix index 58a26d8b6182..75704ace2dba 100644 --- a/tests/remote-builds.nix +++ b/tests/remote-builds.nix @@ -1,8 +1,8 @@ # Test Nix's remote build feature. -{ system, nix }: +{ nixpkgs, system, nix }: -with import <nixpkgs/nixos/lib/testing.nix> { inherit system; }; +with import (nixpkgs + "/nixos/lib/testing.nix") { inherit system; }; makeTest ( |