summary refs log tree commit diff
path: root/lib/tests/release.nix
blob: dfa4ca2676d1f46415903e28d29d52dd1d01deb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ nixpkgs ? { outPath = (import ../.).cleanSource ../..; revCount = 1234; shortRev = "abcdef"; }
, # The platforms for which we build Nixpkgs.
  supportedSystems ? [ builtins.currentSystem ]
, # Strip most of attributes when evaluating to spare memory usage
  scrubJobs ? true
}:

with import ../../pkgs/top-level/release-lib.nix { inherit supportedSystems scrubJobs; };
with lib;

{
  systems = import ./systems.nix { inherit lib assertTrue; };

  moduleSystem = pkgs.stdenv.mkDerivation {
    name = "nixpkgs-lib-tests";
    buildInputs = [ pkgs.nix ];
    NIX_PATH="nixpkgs=${nixpkgs}";

    buildCommand = ''
      datadir="${pkgs.nix}/share"
      export TEST_ROOT=$(pwd)/test-tmp
      export NIX_BUILD_HOOK=
      export NIX_CONF_DIR=$TEST_ROOT/etc
      export NIX_DB_DIR=$TEST_ROOT/db
      export NIX_LOCALSTATE_DIR=$TEST_ROOT/var
      export NIX_LOG_DIR=$TEST_ROOT/var/log/nix
      export NIX_MANIFESTS_DIR=$TEST_ROOT/var/nix/manifests
      export NIX_STATE_DIR=$TEST_ROOT/var/nix
      export NIX_STORE_DIR=$TEST_ROOT/store
      export PAGER=cat
      cacheDir=$TEST_ROOT/binary-cache
      nix-store --init

      cd ${nixpkgs}/lib/tests
      ./modules.sh

      touch $out
    '';
  };
}