2018-01-10 22:16:49 +02:00
|
|
|
{ nix ? builtins.fetchGit ./.
|
2019-04-19 15:41:59 +03:00
|
|
|
, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.03.tar.gz
|
2010-03-10 15:07:37 +02:00
|
|
|
, officialRelease ? false
|
2017-06-19 21:21:06 +03:00
|
|
|
, systems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
|
2010-03-10 15:07:37 +02:00
|
|
|
}:
|
2009-03-09 17:05:08 +02:00
|
|
|
|
2008-12-04 17:25:28 +02:00
|
|
|
let
|
2008-11-26 03:13:29 +02:00
|
|
|
|
2018-01-18 17:37:39 +02:00
|
|
|
pkgs = import nixpkgs { system = builtins.currentSystem or "x86_64-linux"; };
|
2013-03-15 14:18:49 +02:00
|
|
|
|
2008-12-04 17:25:28 +02:00
|
|
|
jobs = rec {
|
2008-11-26 03:13:29 +02:00
|
|
|
|
|
|
|
|
2008-12-04 17:25:28 +02:00
|
|
|
tarball =
|
2013-03-15 14:18:49 +02:00
|
|
|
with pkgs;
|
2008-11-26 03:13:29 +02:00
|
|
|
|
2018-03-14 20:11:13 +02:00
|
|
|
with import ./release-common.nix { inherit pkgs; };
|
|
|
|
|
2009-03-26 16:12:42 +02:00
|
|
|
releaseTools.sourceTarball {
|
2008-12-04 17:25:28 +02:00
|
|
|
name = "nix-tarball";
|
2019-03-14 16:55:30 +02:00
|
|
|
version = builtins.readFile ./.version;
|
2019-04-08 18:28:05 +03:00
|
|
|
versionSuffix = if officialRelease then "" else "pre${toString nix.revCount or 0}_${nix.shortRev or "0000000"}";
|
2017-01-27 17:13:22 +02:00
|
|
|
src = nix;
|
2008-12-04 17:25:28 +02:00
|
|
|
inherit officialRelease;
|
2008-11-26 03:13:29 +02:00
|
|
|
|
2018-03-14 20:11:13 +02:00
|
|
|
buildInputs = tarballDeps ++ buildDeps;
|
2008-12-04 17:25:28 +02:00
|
|
|
|
2017-03-30 23:51:50 +03:00
|
|
|
configureFlags = "--enable-gc";
|
2008-12-04 17:25:28 +02:00
|
|
|
|
2012-03-18 23:10:59 +02:00
|
|
|
postUnpack = ''
|
2018-04-07 10:15:41 +03:00
|
|
|
(cd $sourceRoot && find . -type f) | cut -c3- > $sourceRoot/.dist-files
|
|
|
|
cat $sourceRoot/.dist-files
|
2012-03-18 23:10:59 +02:00
|
|
|
'';
|
|
|
|
|
2008-12-04 17:25:28 +02:00
|
|
|
preConfigure = ''
|
2016-08-12 16:44:01 +03:00
|
|
|
(cd perl ; autoreconf --install --force --verbose)
|
2009-08-03 15:24:20 +03:00
|
|
|
# TeX needs a writable font cache.
|
|
|
|
export VARTEXFONTS=$TMPDIR/texfonts
|
2008-12-04 17:25:28 +02:00
|
|
|
'';
|
2009-05-07 15:57:04 +03:00
|
|
|
|
2012-12-06 17:55:57 +02:00
|
|
|
distPhase =
|
|
|
|
''
|
|
|
|
runHook preDist
|
2014-02-01 16:18:48 +02:00
|
|
|
make dist
|
2012-12-06 17:55:57 +02:00
|
|
|
mkdir -p $out/tarballs
|
|
|
|
cp *.tar.* $out/tarballs
|
|
|
|
'';
|
2012-12-05 11:23:53 +02:00
|
|
|
|
2009-05-07 15:57:04 +03:00
|
|
|
preDist = ''
|
2014-02-01 16:18:48 +02:00
|
|
|
make install docdir=$out/share/doc/nix makefiles=doc/manual/local.mk
|
2009-05-07 16:22:26 +03:00
|
|
|
echo "doc manual $out/share/doc/nix/manual" >> $out/nix-support/hydra-build-products
|
2009-05-07 15:57:04 +03:00
|
|
|
'';
|
2008-12-04 17:25:28 +02:00
|
|
|
};
|
2008-11-26 03:13:29 +02:00
|
|
|
|
2008-12-04 17:25:28 +02:00
|
|
|
|
2013-03-15 14:18:49 +02:00
|
|
|
build = pkgs.lib.genAttrs systems (system:
|
2008-12-04 17:25:28 +02:00
|
|
|
|
2018-03-19 12:57:34 +02:00
|
|
|
let pkgs = import nixpkgs { inherit system; }; in
|
|
|
|
|
|
|
|
with pkgs;
|
2008-12-04 17:25:28 +02:00
|
|
|
|
2017-05-15 18:30:33 +03:00
|
|
|
with import ./release-common.nix { inherit pkgs; };
|
|
|
|
|
2008-12-04 17:25:28 +02:00
|
|
|
releaseTools.nixBuild {
|
2009-03-06 19:00:58 +02:00
|
|
|
name = "nix";
|
2008-12-04 17:25:28 +02:00
|
|
|
src = tarball;
|
|
|
|
|
2018-03-14 20:11:13 +02:00
|
|
|
buildInputs = buildDeps;
|
2008-12-04 17:25:28 +02:00
|
|
|
|
2018-08-30 17:03:06 +03:00
|
|
|
preConfigure =
|
|
|
|
# Copy libboost_context so we don't get all of Boost in our closure.
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/45462
|
|
|
|
''
|
|
|
|
mkdir -p $out/lib
|
|
|
|
cp ${boost}/lib/libboost_context* $out/lib
|
|
|
|
'';
|
|
|
|
|
2017-05-15 18:30:33 +03:00
|
|
|
configureFlags = configureFlags ++
|
|
|
|
[ "--sysconfdir=/etc" ];
|
2012-03-19 02:20:02 +02:00
|
|
|
|
2012-05-23 01:36:54 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-01-03 00:52:15 +02:00
|
|
|
makeFlags = "profiledir=$(out)/etc/profile.d";
|
|
|
|
|
2013-01-02 23:12:19 +02:00
|
|
|
installFlags = "sysconfdir=$(out)/etc";
|
|
|
|
|
2016-01-07 17:05:02 +02:00
|
|
|
doInstallCheck = true;
|
2014-02-01 16:37:50 +02:00
|
|
|
installCheckFlags = "sysconfdir=$(out)/etc";
|
2013-03-15 14:18:49 +02:00
|
|
|
});
|
|
|
|
|
2008-12-04 17:25:28 +02:00
|
|
|
|
2017-03-31 16:54:15 +03:00
|
|
|
perlBindings = pkgs.lib.genAttrs systems (system:
|
2016-08-12 16:44:01 +03:00
|
|
|
|
2017-12-22 12:33:34 +02:00
|
|
|
let pkgs = import nixpkgs { inherit system; }; in with pkgs;
|
2016-08-12 16:44:01 +03:00
|
|
|
|
|
|
|
releaseTools.nixBuild {
|
|
|
|
name = "nix-perl";
|
|
|
|
src = tarball;
|
|
|
|
|
|
|
|
buildInputs =
|
2018-03-22 15:15:46 +02:00
|
|
|
[ jobs.build.${system} curl bzip2 xz pkgconfig pkgs.perl boost ]
|
2017-05-03 12:30:02 +03:00
|
|
|
++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium;
|
2016-08-12 16:44:01 +03:00
|
|
|
|
2017-03-30 23:51:50 +03:00
|
|
|
configureFlags = ''
|
2016-08-12 16:44:01 +03:00
|
|
|
--with-dbi=${perlPackages.DBI}/${pkgs.perl.libPrefix}
|
|
|
|
--with-dbd-sqlite=${perlPackages.DBDSQLite}/${pkgs.perl.libPrefix}
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-03-30 23:51:50 +03:00
|
|
|
postUnpack = "sourceRoot=$sourceRoot/perl";
|
2016-08-12 16:44:01 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2013-03-15 14:18:49 +02:00
|
|
|
binaryTarball = pkgs.lib.genAttrs systems (system:
|
2012-05-23 01:36:54 +03:00
|
|
|
|
2017-12-22 12:33:34 +02:00
|
|
|
with import nixpkgs { inherit system; };
|
2012-05-23 01:36:54 +03:00
|
|
|
|
|
|
|
let
|
2013-03-15 14:18:49 +02:00
|
|
|
toplevel = builtins.getAttr system jobs.build;
|
2012-05-23 01:36:54 +03:00
|
|
|
version = toplevel.src.version;
|
2018-03-26 15:14:53 +03:00
|
|
|
installerClosureInfo = closureInfo { rootPaths = [ toplevel cacert ]; };
|
2012-05-23 01:36:54 +03:00
|
|
|
in
|
|
|
|
|
|
|
|
runCommand "nix-binary-tarball-${version}"
|
2018-03-26 15:14:53 +03:00
|
|
|
{ nativeBuildInputs = lib.optional (system != "aarch64-linux") shellcheck;
|
2012-05-23 01:36:54 +03:00
|
|
|
meta.description = "Distribution-independent Nix bootstrap binaries for ${system}";
|
|
|
|
}
|
|
|
|
''
|
2018-03-26 15:14:53 +03:00
|
|
|
cp ${installerClosureInfo}/registration $TMPDIR/reginfo
|
2012-05-23 01:36:54 +03:00
|
|
|
substitute ${./scripts/install-nix-from-closure.sh} $TMPDIR/install \
|
2014-12-10 17:05:08 +02:00
|
|
|
--subst-var-by nix ${toplevel} \
|
|
|
|
--subst-var-by cacert ${cacert}
|
2018-03-28 16:16:13 +03:00
|
|
|
|
|
|
|
substitute ${./scripts/install-darwin-multi-user.sh} $TMPDIR/install-darwin-multi-user.sh \
|
|
|
|
--subst-var-by nix ${toplevel} \
|
|
|
|
--subst-var-by cacert ${cacert}
|
|
|
|
substitute ${./scripts/install-systemd-multi-user.sh} $TMPDIR/install-systemd-multi-user.sh \
|
|
|
|
--subst-var-by nix ${toplevel} \
|
|
|
|
--subst-var-by cacert ${cacert}
|
|
|
|
substitute ${./scripts/install-multi-user.sh} $TMPDIR/install-multi-user \
|
2017-07-09 20:07:28 +03:00
|
|
|
--subst-var-by nix ${toplevel} \
|
|
|
|
--subst-var-by cacert ${cacert}
|
2017-07-09 19:38:32 +03:00
|
|
|
|
2018-02-20 13:33:32 +02:00
|
|
|
if type -p shellcheck; then
|
2018-03-28 16:16:13 +03:00
|
|
|
# SC1090: Don't worry about not being able to find
|
|
|
|
# $nix/etc/profile.d/nix.sh
|
|
|
|
shellcheck --exclude SC1090 $TMPDIR/install
|
|
|
|
shellcheck $TMPDIR/install-darwin-multi-user.sh
|
|
|
|
shellcheck $TMPDIR/install-systemd-multi-user.sh
|
|
|
|
|
|
|
|
# SC1091: Don't panic about not being able to source
|
|
|
|
# /etc/profile
|
|
|
|
# SC2002: Ignore "useless cat" "error", when loading
|
|
|
|
# .reginfo, as the cat is a much cleaner
|
|
|
|
# implementation, even though it is "useless"
|
|
|
|
# SC2116: Allow ROOT_HOME=$(echo ~root) for resolving
|
|
|
|
# root's home directory
|
|
|
|
shellcheck --external-sources \
|
|
|
|
--exclude SC1091,SC2002,SC2116 $TMPDIR/install-multi-user
|
2018-02-20 13:33:32 +02:00
|
|
|
fi
|
2017-07-09 19:38:32 +03:00
|
|
|
|
2012-05-23 01:36:54 +03:00
|
|
|
chmod +x $TMPDIR/install
|
2018-03-28 16:16:13 +03:00
|
|
|
chmod +x $TMPDIR/install-darwin-multi-user.sh
|
|
|
|
chmod +x $TMPDIR/install-systemd-multi-user.sh
|
|
|
|
chmod +x $TMPDIR/install-multi-user
|
2014-02-10 17:35:59 +02:00
|
|
|
dir=nix-${version}-${system}
|
|
|
|
fn=$out/$dir.tar.bz2
|
2012-05-23 01:36:54 +03:00
|
|
|
mkdir -p $out/nix-support
|
|
|
|
echo "file binary-dist $fn" >> $out/nix-support/hydra-build-products
|
|
|
|
tar cvfj $fn \
|
2014-02-10 17:35:59 +02:00
|
|
|
--owner=0 --group=0 --mode=u+rw,uga+r \
|
|
|
|
--absolute-names \
|
|
|
|
--hard-dereference \
|
|
|
|
--transform "s,$TMPDIR/install,$dir/install," \
|
|
|
|
--transform "s,$TMPDIR/reginfo,$dir/.reginfo," \
|
|
|
|
--transform "s,$NIX_STORE,$dir/store,S" \
|
2018-03-28 16:16:13 +03:00
|
|
|
$TMPDIR/install $TMPDIR/install-darwin-multi-user.sh \
|
|
|
|
$TMPDIR/install-systemd-multi-user.sh \
|
|
|
|
$TMPDIR/install-multi-user $TMPDIR/reginfo \
|
2018-03-26 15:14:53 +03:00
|
|
|
$(cat ${installerClosureInfo}/store-paths)
|
2013-03-15 14:18:49 +02:00
|
|
|
'');
|
2012-05-23 01:36:54 +03:00
|
|
|
|
2009-09-17 20:44:13 +03:00
|
|
|
|
2008-12-04 17:25:28 +02:00
|
|
|
coverage =
|
2018-03-20 15:55:47 +02:00
|
|
|
with pkgs;
|
|
|
|
|
|
|
|
with import ./release-common.nix { inherit pkgs; };
|
2008-12-04 17:25:28 +02:00
|
|
|
|
|
|
|
releaseTools.coverageAnalysis {
|
|
|
|
name = "nix-build";
|
|
|
|
src = tarball;
|
|
|
|
|
2018-03-20 15:55:47 +02:00
|
|
|
buildInputs = buildDeps;
|
2008-12-04 17:25:28 +02:00
|
|
|
|
2012-03-19 18:05:42 +02:00
|
|
|
dontInstall = false;
|
|
|
|
|
2012-05-12 06:30:47 +03:00
|
|
|
doInstallCheck = true;
|
2012-08-27 18:28:48 +03:00
|
|
|
|
2018-03-20 15:55:47 +02:00
|
|
|
lcovFilter = [ "*/boost/*" "*-tab.*" "*/nlohmann/*" "*/linenoise/*" ];
|
2008-12-04 17:25:28 +02:00
|
|
|
|
|
|
|
# We call `dot', and even though we just use it to
|
|
|
|
# syntax-check generated dot files, it still requires some
|
|
|
|
# fonts. So provide those.
|
|
|
|
FONTCONFIG_FILE = texFunctions.fontsConf;
|
|
|
|
};
|
|
|
|
|
2012-08-27 18:28:48 +03:00
|
|
|
|
2018-07-31 18:34:53 +03:00
|
|
|
#rpm_fedora27x86_64 = makeRPM_x86_64 (diskImageFunsFun: diskImageFunsFun.fedora27x86_64) [ ];
|
2014-11-20 14:26:10 +02:00
|
|
|
|
|
|
|
|
2017-09-14 19:56:33 +03:00
|
|
|
#deb_debian8i386 = makeDeb_i686 (diskImageFuns: diskImageFuns.debian8i386) [ "libsodium-dev" ] [ "libsodium13" ];
|
|
|
|
#deb_debian8x86_64 = makeDeb_x86_64 (diskImageFunsFun: diskImageFunsFun.debian8x86_64) [ "libsodium-dev" ] [ "libsodium13" ];
|
2016-04-29 18:11:51 +03:00
|
|
|
|
2018-08-21 16:33:29 +03:00
|
|
|
#deb_ubuntu1710i386 = makeDeb_i686 (diskImageFuns: diskImageFuns.ubuntu1710i386) [ ] [ "libsodium18" ];
|
|
|
|
#deb_ubuntu1710x86_64 = makeDeb_x86_64 (diskImageFuns: diskImageFuns.ubuntu1710x86_64) [ ] [ "libsodium18" "libboost-context1.62.0" ];
|
2008-12-04 17:25:28 +02:00
|
|
|
|
|
|
|
|
2011-10-11 16:06:59 +03:00
|
|
|
# System tests.
|
2014-11-18 15:49:42 +02:00
|
|
|
tests.remoteBuilds = (import ./tests/remote-builds.nix rec {
|
2017-12-22 12:33:34 +02:00
|
|
|
inherit nixpkgs;
|
2013-03-25 22:59:11 +02:00
|
|
|
nix = build.x86_64-linux; system = "x86_64-linux";
|
2014-09-05 12:49:35 +03:00
|
|
|
});
|
2011-10-11 16:58:47 +03:00
|
|
|
|
2014-11-18 15:49:42 +02:00
|
|
|
tests.nix-copy-closure = (import ./tests/nix-copy-closure.nix rec {
|
2017-12-22 12:33:34 +02:00
|
|
|
inherit nixpkgs;
|
2013-03-25 22:59:11 +02:00
|
|
|
nix = build.x86_64-linux; system = "x86_64-linux";
|
2014-09-05 12:49:35 +03:00
|
|
|
});
|
2011-10-11 16:06:59 +03:00
|
|
|
|
2017-12-12 15:31:31 +02:00
|
|
|
tests.setuid = pkgs.lib.genAttrs
|
2018-02-07 15:15:20 +02:00
|
|
|
["i686-linux" "x86_64-linux"]
|
2017-12-12 15:31:31 +02:00
|
|
|
(system:
|
|
|
|
import ./tests/setuid.nix rec {
|
2018-02-07 15:12:15 +02:00
|
|
|
inherit nixpkgs;
|
2017-12-12 15:31:31 +02:00
|
|
|
nix = build.${system}; inherit system;
|
|
|
|
});
|
2017-05-29 15:19:11 +03:00
|
|
|
|
2014-11-18 15:49:42 +02:00
|
|
|
tests.binaryTarball =
|
2017-12-22 12:33:34 +02:00
|
|
|
with import nixpkgs { system = "x86_64-linux"; };
|
2014-11-18 15:49:42 +02:00
|
|
|
vmTools.runInLinuxImage (runCommand "nix-binary-tarball-test"
|
|
|
|
{ diskImage = vmTools.diskImages.ubuntu1204x86_64;
|
|
|
|
}
|
|
|
|
''
|
2018-08-30 22:18:56 +03:00
|
|
|
set -x
|
2014-11-18 15:49:42 +02:00
|
|
|
useradd -m alice
|
|
|
|
su - alice -c 'tar xf ${binaryTarball.x86_64-linux}/*.tar.*'
|
2016-05-31 16:16:21 +03:00
|
|
|
mkdir /dest-nix
|
|
|
|
mount -o bind /dest-nix /nix # Provide a writable /nix.
|
2014-11-18 15:49:42 +02:00
|
|
|
chown alice /nix
|
|
|
|
su - alice -c '_NIX_INSTALLER_TEST=1 ./nix-*/install'
|
|
|
|
su - alice -c 'nix-store --verify'
|
2016-05-31 16:16:21 +03:00
|
|
|
su - alice -c 'PAGER= nix-store -qR ${build.x86_64-linux}'
|
2018-08-30 18:10:28 +03:00
|
|
|
|
|
|
|
# Check whether 'nix upgrade-nix' works.
|
|
|
|
cat > /tmp/paths.nix <<EOF
|
|
|
|
{
|
|
|
|
x86_64-linux = "${build.x86_64-linux}";
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
su - alice -c 'nix upgrade-nix -vvv --nix-store-paths-url file:///tmp/paths.nix'
|
2018-08-30 22:18:56 +03:00
|
|
|
(! [ -L /home/alice/.profile-1-link ])
|
2018-08-30 18:10:28 +03:00
|
|
|
su - alice -c 'PAGER= nix-store -qR ${build.x86_64-linux}'
|
|
|
|
|
2014-11-18 19:40:47 +02:00
|
|
|
mkdir -p $out/nix-support
|
|
|
|
touch $out/nix-support/hydra-build-products
|
2016-05-31 16:16:21 +03:00
|
|
|
umount /nix
|
2014-11-18 15:49:42 +02:00
|
|
|
''); # */
|
|
|
|
|
2016-01-19 22:10:32 +02:00
|
|
|
tests.evalNixpkgs =
|
2017-12-22 12:33:34 +02:00
|
|
|
import (nixpkgs + "/pkgs/top-level/make-tarball.nix") {
|
2019-05-11 02:48:33 +03:00
|
|
|
# FIXME: fix pkgs/top-level/make-tarball.nix in NixOS to not require a revCount.
|
|
|
|
nixpkgs = nixpkgs // { revCount = 0; };
|
2016-01-19 22:10:32 +02:00
|
|
|
inherit pkgs;
|
|
|
|
nix = build.x86_64-linux;
|
|
|
|
officialRelease = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
tests.evalNixOS =
|
|
|
|
pkgs.runCommand "eval-nixos" { buildInputs = [ build.x86_64-linux ]; }
|
|
|
|
''
|
|
|
|
export NIX_STATE_DIR=$TMPDIR
|
|
|
|
|
2018-04-19 16:28:40 +03:00
|
|
|
nix-instantiate ${nixpkgs}/nixos/release-combined.nix -A tested --dry-run \
|
|
|
|
--arg nixpkgs '{ outPath = ${nixpkgs}; revCount = 123; shortRev = "abcdefgh"; }'
|
2016-01-19 22:10:32 +02:00
|
|
|
|
|
|
|
touch $out
|
|
|
|
'';
|
|
|
|
|
2013-10-23 12:52:25 +03:00
|
|
|
|
2018-05-30 18:40:08 +03:00
|
|
|
installerScript =
|
|
|
|
pkgs.runCommand "installer-script"
|
|
|
|
{ buildInputs = [ build.x86_64-linux ];
|
|
|
|
}
|
|
|
|
''
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
|
|
|
|
substitute ${./scripts/install.in} $out/install \
|
|
|
|
${pkgs.lib.concatMapStrings
|
2019-01-11 17:30:43 +02:00
|
|
|
(system: "--replace '@binaryTarball_${system}@' $(nix hash-file --base16 --type sha256 ${binaryTarball.${system}}/*.tar.bz2) ")
|
2018-05-30 18:40:08 +03:00
|
|
|
[ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
|
|
|
|
} \
|
|
|
|
--replace '@nixVersion@' ${build.x86_64-linux.src.version}
|
|
|
|
|
|
|
|
echo "file installer $out/install" >> $out/nix-support/hydra-build-products
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
2013-10-23 12:52:25 +03:00
|
|
|
# Aggregate job containing the release-critical jobs.
|
|
|
|
release = pkgs.releaseTools.aggregate {
|
|
|
|
name = "nix-${tarball.version}";
|
|
|
|
meta.description = "Release-critical builds";
|
|
|
|
constituents =
|
|
|
|
[ tarball
|
|
|
|
build.i686-linux
|
2014-10-31 09:58:19 +02:00
|
|
|
build.x86_64-darwin
|
2013-10-23 12:52:25 +03:00
|
|
|
build.x86_64-linux
|
2018-05-30 18:40:08 +03:00
|
|
|
build.aarch64-linux
|
2013-10-23 12:52:25 +03:00
|
|
|
binaryTarball.i686-linux
|
2014-10-31 09:58:19 +02:00
|
|
|
binaryTarball.x86_64-darwin
|
2013-10-23 12:52:25 +03:00
|
|
|
binaryTarball.x86_64-linux
|
2018-05-30 18:40:08 +03:00
|
|
|
binaryTarball.aarch64-linux
|
2014-11-18 15:49:42 +02:00
|
|
|
tests.remoteBuilds
|
|
|
|
tests.nix-copy-closure
|
|
|
|
tests.binaryTarball
|
2016-01-19 22:10:32 +02:00
|
|
|
tests.evalNixpkgs
|
|
|
|
tests.evalNixOS
|
2018-05-30 18:40:08 +03:00
|
|
|
installerScript
|
2013-10-23 12:52:25 +03:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2008-12-04 17:25:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-12-04 19:54:14 +02:00
|
|
|
makeRPM_i686 = makeRPM "i686-linux";
|
|
|
|
makeRPM_x86_64 = makeRPM "x86_64-linux";
|
|
|
|
|
2012-08-27 18:28:48 +03:00
|
|
|
makeRPM =
|
2015-02-10 12:33:07 +02:00
|
|
|
system: diskImageFun: extraPackages:
|
2008-12-04 17:25:28 +02:00
|
|
|
|
2017-12-22 12:33:34 +02:00
|
|
|
with import nixpkgs { inherit system; };
|
2008-12-04 17:25:28 +02:00
|
|
|
|
|
|
|
releaseTools.rpmBuild rec {
|
2012-09-14 00:23:12 +03:00
|
|
|
name = "nix-rpm";
|
2010-03-10 15:07:37 +02:00
|
|
|
src = jobs.tarball;
|
2011-08-08 17:06:10 +03:00
|
|
|
diskImage = (diskImageFun vmTools.diskImageFuns)
|
2015-02-10 12:33:07 +02:00
|
|
|
{ extraPackages =
|
2018-07-31 12:53:53 +03:00
|
|
|
[ "sqlite" "sqlite-devel" "bzip2-devel" "libcurl-devel" "openssl-devel" "xz-devel" "libseccomp-devel" "libsodium-devel" "boost-devel" "bison" "flex" ]
|
2015-02-10 12:33:07 +02:00
|
|
|
++ extraPackages; };
|
2018-01-05 02:44:32 +02:00
|
|
|
# At most 2047MB can be simulated in qemu-system-i386
|
|
|
|
memSize = 2047;
|
2014-11-20 14:26:10 +02:00
|
|
|
meta.schedulingPriority = 50;
|
2012-05-01 23:31:56 +03:00
|
|
|
postRPMInstall = "cd /tmp/rpmout/BUILD/nix-* && make installcheck";
|
2017-02-22 14:54:11 +02:00
|
|
|
#enableParallelBuilding = true;
|
2008-12-04 17:25:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-12-04 19:54:14 +02:00
|
|
|
makeDeb_i686 = makeDeb "i686-linux";
|
|
|
|
makeDeb_x86_64 = makeDeb "x86_64-linux";
|
2012-08-27 18:28:48 +03:00
|
|
|
|
2008-12-04 17:25:28 +02:00
|
|
|
makeDeb =
|
2016-04-29 18:11:51 +03:00
|
|
|
system: diskImageFun: extraPackages: extraDebPackages:
|
2008-12-04 17:25:28 +02:00
|
|
|
|
2017-12-22 12:33:34 +02:00
|
|
|
with import nixpkgs { inherit system; };
|
2008-12-04 17:25:28 +02:00
|
|
|
|
|
|
|
releaseTools.debBuild {
|
|
|
|
name = "nix-deb";
|
2010-03-10 15:07:37 +02:00
|
|
|
src = jobs.tarball;
|
2011-08-08 16:19:00 +03:00
|
|
|
diskImage = (diskImageFun vmTools.diskImageFuns)
|
2015-06-02 14:14:31 +03:00
|
|
|
{ extraPackages =
|
2018-03-22 15:15:46 +02:00
|
|
|
[ "libsqlite3-dev" "libbz2-dev" "libcurl-dev" "libcurl3-nss" "libssl-dev" "liblzma-dev" "libseccomp-dev" "libsodium-dev" "libboost-all-dev" ]
|
2015-06-02 14:14:31 +03:00
|
|
|
++ extraPackages; };
|
2018-03-22 15:15:46 +02:00
|
|
|
memSize = 2047;
|
2014-11-20 14:26:10 +02:00
|
|
|
meta.schedulingPriority = 50;
|
2016-04-29 18:11:51 +03:00
|
|
|
postInstall = "make installcheck";
|
2009-04-02 11:16:15 +03:00
|
|
|
configureFlags = "--sysconfdir=/etc";
|
2015-06-17 11:33:51 +03:00
|
|
|
debRequires =
|
2017-06-01 15:28:21 +03:00
|
|
|
[ "curl" "libsqlite3-0" "libbz2-1.0" "bzip2" "xz-utils" "libssl1.0.0" "liblzma5" "libseccomp2" ]
|
2016-04-29 18:11:51 +03:00
|
|
|
++ extraDebPackages;
|
2014-02-06 15:21:14 +02:00
|
|
|
debMaintainer = "Eelco Dolstra <eelco.dolstra@logicblox.com>";
|
2012-05-12 06:30:47 +03:00
|
|
|
doInstallCheck = true;
|
2017-02-22 14:54:11 +02:00
|
|
|
#enableParallelBuilding = true;
|
2008-11-26 03:13:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-12-04 17:25:28 +02:00
|
|
|
in jobs
|