2013-10-01 13:45:14 +02:00
|
|
|
/* Hydra job to build a tarball for Nixpkgs from a Git checkout. It
|
2009-03-09 18:49:13 +01:00
|
|
|
also builds the documentation and tests whether the Nix expressions
|
|
|
|
evaluate correctly. */
|
|
|
|
|
2013-03-26 11:57:44 +01:00
|
|
|
{ nixpkgs, officialRelease }:
|
2009-03-09 18:49:13 +01:00
|
|
|
|
|
|
|
with import nixpkgs.outPath {};
|
|
|
|
|
2013-10-01 13:45:14 +02:00
|
|
|
releaseTools.sourceTarball rec {
|
2009-03-09 18:49:13 +01:00
|
|
|
name = "nixpkgs-tarball";
|
|
|
|
src = nixpkgs;
|
|
|
|
|
2013-10-01 13:45:14 +02:00
|
|
|
inherit officialRelease;
|
|
|
|
version = builtins.readFile ../../.version;
|
2013-10-11 11:29:24 +02:00
|
|
|
versionSuffix = "pre${toString nixpkgs.revCount}.${nixpkgs.shortRev}";
|
2012-06-04 06:12:17 +02:00
|
|
|
|
2009-03-09 18:49:13 +01:00
|
|
|
buildInputs = [
|
|
|
|
lzma
|
|
|
|
libxml2 # Needed for the release notes.
|
|
|
|
libxslt
|
|
|
|
w3m
|
2009-11-18 13:22:24 +01:00
|
|
|
nix # Needed to check whether the expressions are valid.
|
2009-07-10 15:41:47 +02:00
|
|
|
tetex dblatex
|
2009-03-09 18:49:13 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
eval "$preConfigure"
|
2012-06-04 06:12:17 +02:00
|
|
|
releaseName=nixpkgs-$VERSION$VERSION_SUFFIX
|
2013-10-01 13:45:14 +02:00
|
|
|
echo -n $VERSION_SUFFIX > .version-suffix
|
2009-03-09 18:49:13 +01:00
|
|
|
echo "release name is $releaseName"
|
|
|
|
'';
|
|
|
|
|
|
|
|
dontBuild = false;
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
echo "building docs..."
|
2009-07-10 15:41:47 +02:00
|
|
|
export VARTEXFONTS=$TMPDIR/texfonts
|
|
|
|
make -C doc docbookxsl=${docbook5_xsl}/xml/xsl/docbook
|
2009-03-09 18:49:13 +01:00
|
|
|
ln -s doc/NEWS.txt NEWS
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
checkPhase = ''
|
2012-05-13 21:10:57 +02:00
|
|
|
export NIX_DB_DIR=$TMPDIR
|
2012-05-15 16:37:24 +02:00
|
|
|
export NIX_STATE_DIR=$TMPDIR
|
2012-05-13 21:10:57 +02:00
|
|
|
nix-store --init
|
2012-11-29 14:10:49 +01:00
|
|
|
|
2014-04-20 00:07:14 +02:00
|
|
|
# Make sure that derivation paths do not depend on the Nixpkgs path.
|
|
|
|
mkdir $TMPDIR/foo
|
|
|
|
ln -s $(readlink -f .) $TMPDIR/foo/bar
|
|
|
|
p1=$(nix-instantiate pkgs/top-level/all-packages.nix --dry-run -A firefox)
|
|
|
|
p2=$(nix-instantiate $TMPDIR/foo/bar/pkgs/top-level/all-packages.nix --dry-run -A firefox)
|
|
|
|
if [ "$p1" != "$p2" ]; then
|
|
|
|
echo "Nixpkgs evaluation depends on Nixpkgs path ($p1 vs $p2)!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2009-03-31 15:03:50 +02:00
|
|
|
# Run the regression tests in `lib'.
|
2014-04-20 00:07:14 +02:00
|
|
|
res="$(nix-instantiate --eval --strict --show-trace lib/tests.nix)"
|
2010-05-18 10:39:31 +02:00
|
|
|
if test "$res" != "[ ]"; then
|
2009-04-03 14:21:06 +02:00
|
|
|
echo "regression tests for lib failed, got: $res"
|
2009-03-31 15:03:50 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
2012-11-29 14:10:49 +01:00
|
|
|
|
2009-03-09 18:49:13 +01:00
|
|
|
# Check that all-packages.nix evaluates on a number of platforms.
|
2013-10-01 13:01:49 +02:00
|
|
|
for platform in i686-linux x86_64-linux x86_64-darwin i686-freebsd x86_64-freebsd; do
|
2009-03-09 18:49:13 +01:00
|
|
|
header "checking pkgs/top-level/all-packages.nix on $platform"
|
2014-04-20 00:07:14 +02:00
|
|
|
nix-env -f pkgs/top-level/all-packages.nix \
|
2009-08-26 19:09:02 +02:00
|
|
|
--show-trace --argstr system "$platform" \
|
2012-06-04 06:12:17 +02:00
|
|
|
-qa \* --drv-path --system-filter \* --system --meta --xml > /dev/null
|
2009-03-09 18:49:13 +01:00
|
|
|
stopNest
|
|
|
|
done
|
2010-08-19 16:33:44 +02:00
|
|
|
|
|
|
|
header "checking eval-release.nix"
|
2014-04-20 00:07:14 +02:00
|
|
|
nix-instantiate --eval --strict --show-trace ./maintainers/scripts/eval-release.nix > /dev/null
|
2010-08-19 16:33:44 +02:00
|
|
|
stopNest
|
2014-02-19 13:01:33 +01:00
|
|
|
|
|
|
|
header "checking find-tarballs.nix"
|
2014-04-20 00:07:14 +02:00
|
|
|
nix-instantiate --eval --strict --show-trace ./maintainers/scripts/find-tarballs.nix > /dev/null
|
2014-02-19 13:01:33 +01:00
|
|
|
stopNest
|
2009-03-09 18:49:13 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
distPhase = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/tarballs
|
2009-03-09 18:49:13 +01:00
|
|
|
mkdir ../$releaseName
|
|
|
|
cp -prd . ../$releaseName
|
2012-04-14 16:19:13 +02:00
|
|
|
echo nixpkgs > ../$releaseName/channel-name
|
2013-01-30 12:51:29 +01:00
|
|
|
(cd .. && tar cfa $out/tarballs/$releaseName.tar.xz $releaseName) || false
|
2009-03-09 18:49:13 +01:00
|
|
|
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/release-notes
|
2009-03-09 18:49:13 +01:00
|
|
|
cp doc/NEWS.html $out/release-notes/index.html
|
|
|
|
cp doc/style.css $out/release-notes/
|
|
|
|
echo "doc release-notes $out/release-notes" >> $out/nix-support/hydra-build-products
|
|
|
|
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/manual
|
2009-03-09 18:49:13 +01:00
|
|
|
cp doc/manual.html $out/manual/index.html
|
|
|
|
cp doc/style.css $out/manual/
|
|
|
|
echo "doc manual $out/manual" >> $out/nix-support/hydra-build-products
|
2009-07-10 15:41:47 +02:00
|
|
|
|
|
|
|
cp doc/manual.pdf $out/manual.pdf
|
|
|
|
echo "doc-pdf manual $out/manual.pdf" >> $out/nix-support/hydra-build-products
|
2009-03-09 18:49:13 +01:00
|
|
|
'';
|
2009-07-08 17:56:05 +02:00
|
|
|
|
|
|
|
meta = {
|
2010-01-29 13:26:12 +01:00
|
|
|
maintainers = [ lib.maintainers.all ];
|
2009-07-08 17:56:05 +02:00
|
|
|
};
|
2009-03-09 18:49:13 +01:00
|
|
|
}
|