The testing interface does not take nixpkgs as a parameter anymore => fix this

This commit is contained in:
Sander van der Burg 2013-10-02 11:47:28 +02:00
parent c9b4e6fda2
commit afdae66335

View File

@ -1,8 +1,8 @@
{ nixpkgs ? ../../nixpkgs
{ nixpkgs ? <nixpkgs>
, system ? builtins.currentSystem
}:
with import ../lib/testing.nix { inherit nixpkgs system; };
with import ../lib/testing.nix { inherit system; };
runInMachine {
drv = (import nixpkgs { }).aterm;