After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.
Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.
A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.
This commit was automatically created and can be verified using
nix-build a08b3a4d19.tar.gz \
--argstr baseRev 78e9caf153
result/bin/apply-formatting $NIXPKGS_PATH
85 lines
2.2 KiB
Nix
85 lines
2.2 KiB
Nix
/*
|
|
This function builds a binary tarball. The resulting binaries are
|
|
usually only useful if they are don't have any runtime dependencies
|
|
on any paths in the Nix store, since those aren't distributed in
|
|
the tarball. For instance, the binaries should be statically
|
|
linked: they can't depend on dynamic libraries in the store
|
|
(including Glibc).
|
|
|
|
The binaries are built and installed with a prefix of /usr/local by
|
|
default. They are installed by setting DESTDIR to a temporary
|
|
directory, so the Makefile of the package should support DESTDIR.
|
|
*/
|
|
|
|
{
|
|
src,
|
|
lib,
|
|
stdenv,
|
|
name ? "binary-tarball",
|
|
...
|
|
}@args:
|
|
|
|
stdenv.mkDerivation (
|
|
|
|
{
|
|
# Also run a `make check'.
|
|
doCheck = true;
|
|
|
|
showBuildStats = true;
|
|
|
|
prefix = "/usr/local";
|
|
|
|
postPhases = [ "finalPhase" ];
|
|
}
|
|
|
|
// args
|
|
//
|
|
|
|
{
|
|
name = name + (lib.optionalString (src ? version) "-${src.version}");
|
|
|
|
postHook = ''
|
|
mkdir -p $out/nix-support
|
|
echo "$system" > $out/nix-support/system
|
|
. ${./functions.sh}
|
|
|
|
origSrc=$src
|
|
src=$(findTarball $src)
|
|
|
|
if test -e $origSrc/nix-support/hydra-release-name; then
|
|
releaseName=$(cat $origSrc/nix-support/hydra-release-name)
|
|
fi
|
|
|
|
installFlagsArray=(DESTDIR=$TMPDIR/inst)
|
|
|
|
# Prefix hackery because of a bug in stdenv (it tries to `mkdir
|
|
# $prefix', which doesn't work due to the DESTDIR).
|
|
prependToVar configureFlags "--prefix=$prefix"
|
|
dontAddPrefix=1
|
|
prefix=$TMPDIR/inst$prefix
|
|
'';
|
|
|
|
doDist = true;
|
|
|
|
distPhase = ''
|
|
mkdir -p $out/tarballs
|
|
tar cvfj $out/tarballs/''${releaseName:-binary-dist}.tar.bz2 -C $TMPDIR/inst .
|
|
'';
|
|
|
|
finalPhase = ''
|
|
for i in $out/tarballs/*; do
|
|
echo "file binary-dist $i" >> $out/nix-support/hydra-build-products
|
|
done
|
|
|
|
# Propagate the release name of the source tarball. This is
|
|
# to get nice package names in channels.
|
|
test -n "$releaseName" && (echo "$releaseName" >> $out/nix-support/hydra-release-name)
|
|
'';
|
|
|
|
meta = (lib.optionalAttrs (args ? meta) args.meta) // {
|
|
description = "Build of a generic binary distribution";
|
|
};
|
|
|
|
}
|
|
)
|