aboutsummaryrefslogtreecommitdiff
path: root/release.nix
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2020-05-23 12:10:12 +0200
committerDaiderd Jordan <daiderd@gmail.com>2020-05-23 12:43:54 +0200
commit6f6bdd63a0f6dae4ab91422645f548837029dee9 (patch)
treee380160e98055a03b4c6721d6fa8b8d83a33e48e /release.nix
parentc129e7c8f4846fcc146cfb3e408a75dd73794794 (diff)
fix hydra build products
Since the binary tarball was replaced none of the hydra builds include the manual. The dist phase isn't enabled by default the manual build products where not written.
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/release.nix b/release.nix
index 2cc4bb4c0..2a320e1c3 100644
--- a/release.nix
+++ b/release.nix
@@ -115,17 +115,17 @@ let
installFlags = "sysconfdir=$(out)/etc";
+ postInstall = ''
+ mkdir -p $doc/nix-support
+ echo "doc manual $doc/share/doc/nix/manual" >> $doc/nix-support/hydra-build-products
+ '';
+
doCheck = true;
doInstallCheck = true;
installCheckFlags = "sysconfdir=$(out)/etc";
separateDebugInfo = true;
-
- preDist = ''
- mkdir -p $doc/nix-support
- echo "doc manual $doc/share/doc/nix/manual" >> $doc/nix-support/hydra-build-products
- '';
});