diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-10-04 10:45:33 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-10-04 10:45:33 +0200 |
commit | 204291f0598c43b10cf20a89b49fc63624d78c7c (patch) | |
tree | 50e8ef983c104c970e9c3e4354f755f8bb0622a7 /tests/setuid.nix | |
parent | 90d6018509e60fd07d93ddefbf6f983a72d4b587 (diff) |
Merge release.nix, shell.nix and release-common.nix into flake.nix
Also provide a Nixpkgs overlay, memoize Nixpkgs evaluation and fit the
githubFlakes test.
Diffstat (limited to 'tests/setuid.nix')
-rw-r--r-- | tests/setuid.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/setuid.nix b/tests/setuid.nix index 77e83c8d6..d79d071df 100644 --- a/tests/setuid.nix +++ b/tests/setuid.nix @@ -1,15 +1,17 @@ # Verify that Linux builds cannot create setuid or setgid binaries. -{ nixpkgs, system, nix }: +{ nixpkgs, system, overlay }: -with import (nixpkgs + "/nixos/lib/testing.nix") { inherit system; }; +with import (nixpkgs + "/nixos/lib/testing.nix") { + inherit system; + extraConfigurations = [ { nixpkgs.overlays = [ overlay ]; } ]; +}; makeTest { machine = { config, lib, pkgs, ... }: { virtualisation.writableStore = true; - nix.package = nix; nix.binaryCaches = [ ]; nix.nixPath = [ "nixpkgs=${lib.cleanSource pkgs.path}" ]; virtualisation.pathsInNixDB = [ pkgs.stdenv pkgs.pkgsi686Linux.stdenv ]; |