about summary refs log tree commit diff
path: root/pkgs/top-level/release.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-04-29 11:27:30 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-04-29 11:29:15 +0200
commita38672dea22d424105a0e21ae4b71e051f657c01 (patch)
tree668ae6a670c5abd58375beaf06e8726462a35158 /pkgs/top-level/release.nix
parenteadb3a51ff475d741465921aca2ef5c2dbad604a (diff)
downloadnixlib-a38672dea22d424105a0e21ae4b71e051f657c01.tar
nixlib-a38672dea22d424105a0e21ae4b71e051f657c01.tar.gz
nixlib-a38672dea22d424105a0e21ae4b71e051f657c01.tar.bz2
nixlib-a38672dea22d424105a0e21ae4b71e051f657c01.tar.lz
nixlib-a38672dea22d424105a0e21ae4b71e051f657c01.tar.xz
nixlib-a38672dea22d424105a0e21ae4b71e051f657c01.tar.zst
nixlib-a38672dea22d424105a0e21ae4b71e051f657c01.zip
release: fix eval by lib.tests -> lib-tests
See discussion on commit
https://github.com/NixOS/nixpkgs/commit/de0f122b016c88#commitcomment-10937080
Diffstat (limited to 'pkgs/top-level/release.nix')
-rw-r--r--pkgs/top-level/release.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix
index cb469e613056..e156f336ffa2 100644
--- a/pkgs/top-level/release.nix
+++ b/pkgs/top-level/release.nix
@@ -23,7 +23,7 @@ let
     { tarball = import ./make-tarball.nix { inherit nixpkgs officialRelease; };
 
       manual = import ../../doc;
-      lib.tests = import ../../lib/tests/release.nix { inherit nixpkgs; };
+      lib-tests = import ../../lib/tests/release.nix { inherit nixpkgs; };
 
       unstable = pkgs.releaseTools.aggregate
         { name = "nixpkgs-${jobs.tarball.version}";
@@ -31,7 +31,7 @@ let
           constituents =
             [ jobs.tarball
               jobs.manual
-              jobs.lib.tests
+              jobs.lib-tests
               jobs.stdenv.x86_64-linux
               jobs.stdenv.i686-linux
               jobs.stdenv.x86_64-darwin