summary refs log tree commit diff
path: root/pkgs/top-level/make-tarball.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-09-11 08:37:03 +0200
committerVladimír Čunát <vcunat@gmail.com>2013-09-11 08:37:03 +0200
commitaa8e8303e1b42c5cf5195f3ce82f886664aa26d4 (patch)
treeaaca4e6d9683e0831cbc327ab5335ab5acd5a8dc /pkgs/top-level/make-tarball.nix
parentb728835bc129c4ef13ee7051e60e685c4b175439 (diff)
parentd55fb56690a7adc21eab7660d76fe4217860d914 (diff)
downloadnixlib-aa8e8303e1b42c5cf5195f3ce82f886664aa26d4.tar
nixlib-aa8e8303e1b42c5cf5195f3ce82f886664aa26d4.tar.gz
nixlib-aa8e8303e1b42c5cf5195f3ce82f886664aa26d4.tar.bz2
nixlib-aa8e8303e1b42c5cf5195f3ce82f886664aa26d4.tar.lz
nixlib-aa8e8303e1b42c5cf5195f3ce82f886664aa26d4.tar.xz
nixlib-aa8e8303e1b42c5cf5195f3ce82f886664aa26d4.tar.zst
nixlib-aa8e8303e1b42c5cf5195f3ce82f886664aa26d4.zip
Merge branch 'x-updates' into master
Diffstat (limited to 'pkgs/top-level/make-tarball.nix')
-rw-r--r--pkgs/top-level/make-tarball.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix
index 7fb597fd6d8e..2e5d92b8ed25 100644
--- a/pkgs/top-level/make-tarball.nix
+++ b/pkgs/top-level/make-tarball.nix
@@ -47,7 +47,7 @@ releaseTools.sourceTarball {
     nix-store --init
 
     # Run the regression tests in `lib'.
-    res="$(nix-instantiate --eval-only --strict pkgs/lib/tests.nix)"
+    res="$(nix-instantiate --eval-only --strict --show-trace pkgs/lib/tests.nix)"
     if test "$res" != "[ ]"; then
         echo "regression tests for lib failed, got: $res"
         exit 1
@@ -63,7 +63,7 @@ releaseTools.sourceTarball {
     done
 
     header "checking eval-release.nix"
-    nix-instantiate --eval-only --strict --xml ./maintainers/scripts/eval-release.nix > $TMPDIR/out.xml
+    nix-instantiate --eval-only --strict --xml --show-trace ./maintainers/scripts/eval-release.nix > $TMPDIR/out.xml
     xmllint --noout $TMPDIR/out.xml
     stopNest
   '';