2013-03-26 04:02:29 -06:00
|
|
|
/* This file defines the builds that constitute the Nixpkgs.
|
|
|
|
Everything defined here ends up in the Nixpkgs channel. Individual
|
|
|
|
jobs can be tested by running:
|
|
|
|
|
|
|
|
$ nix-build pkgs/top-level/release.nix -A <jobname>.<system>
|
|
|
|
|
|
|
|
e.g.
|
|
|
|
|
|
|
|
$ nix-build pkgs/top-level/release.nix -A coreutils.x86_64-linux
|
2010-04-19 08:21:52 -06:00
|
|
|
*/
|
2013-03-26 04:02:29 -06:00
|
|
|
|
2017-03-23 17:18:43 -06:00
|
|
|
{ nixpkgs ? { outPath = (import ../../lib).cleanSource ../..; revCount = 1234; shortRev = "abcdef"; }
|
2013-03-26 04:57:44 -06:00
|
|
|
, officialRelease ? false
|
2017-01-14 12:25:01 -07:00
|
|
|
, # The platforms for which we build Nixpkgs.
|
2017-03-08 07:08:31 -07:00
|
|
|
supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
|
2017-01-14 12:25:01 -07:00
|
|
|
, # Strip most of attributes when evaluating to spare memory usage
|
|
|
|
scrubJobs ? true
|
2017-02-27 09:20:25 -07:00
|
|
|
, # Attributes passed to nixpkgs. Don't build packages marked as unfree.
|
|
|
|
nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; }
|
2013-03-26 04:57:44 -06:00
|
|
|
}:
|
|
|
|
|
2017-02-27 09:20:25 -07:00
|
|
|
with import ./release-lib.nix { inherit supportedSystems scrubJobs nixpkgsArgs; };
|
2008-11-28 03:56:36 -07:00
|
|
|
|
2013-03-26 04:57:44 -06:00
|
|
|
let
|
|
|
|
jobs =
|
2016-10-12 10:11:13 -06:00
|
|
|
{ tarball = import ./make-tarball.nix { inherit pkgs nixpkgs officialRelease; };
|
2013-03-26 04:57:44 -06:00
|
|
|
|
2016-03-24 10:36:26 -06:00
|
|
|
metrics = import ./metrics.nix { inherit pkgs nixpkgs; };
|
|
|
|
|
2014-08-24 03:02:23 -06:00
|
|
|
manual = import ../../doc;
|
2017-02-09 14:09:47 -07:00
|
|
|
lib-tests = import ../../lib/tests/release.nix { inherit nixpkgs supportedSystems scrubJobs; };
|
2014-08-24 03:02:23 -06:00
|
|
|
|
2017-04-10 10:29:11 -06:00
|
|
|
darwin-tested = pkgs.releaseTools.aggregate
|
|
|
|
{ name = "nixpkgs-darwin-${jobs.tarball.version}";
|
|
|
|
meta.description = "Release-critical builds for the Nixpkgs darwin channel";
|
|
|
|
constituents =
|
|
|
|
[ jobs.tarball
|
|
|
|
jobs.stdenv.x86_64-darwin
|
|
|
|
jobs.ghc.x86_64-darwin
|
|
|
|
jobs.cabal2nix.x86_64-darwin
|
|
|
|
jobs.ruby.x86_64-darwin
|
|
|
|
jobs.python.x86_64-darwin
|
|
|
|
jobs.rustc.x86_64-darwin
|
|
|
|
jobs.go.x86_64-darwin
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2016-10-12 10:11:13 -06:00
|
|
|
unstable = pkgs.releaseTools.aggregate
|
|
|
|
{ name = "nixpkgs-${jobs.tarball.version}";
|
|
|
|
meta.description = "Release-critical builds for the Nixpkgs unstable channel";
|
|
|
|
constituents =
|
|
|
|
[ jobs.tarball
|
|
|
|
jobs.metrics
|
|
|
|
jobs.manual
|
|
|
|
jobs.stdenv.x86_64-linux
|
|
|
|
jobs.stdenv.i686-linux
|
|
|
|
jobs.stdenv.x86_64-darwin
|
|
|
|
jobs.linux.x86_64-linux
|
|
|
|
jobs.linux.i686-linux
|
|
|
|
jobs.python.x86_64-linux
|
|
|
|
jobs.python.i686-linux
|
|
|
|
jobs.python.x86_64-darwin
|
|
|
|
jobs.python3.x86_64-linux
|
|
|
|
jobs.python3.i686-linux
|
|
|
|
jobs.python3.x86_64-darwin
|
|
|
|
# Many developers use nix-repl
|
|
|
|
jobs.nix-repl.x86_64-linux
|
|
|
|
jobs.nix-repl.i686-linux
|
|
|
|
jobs.nix-repl.x86_64-darwin
|
|
|
|
# Needed by travis-ci to test PRs
|
|
|
|
jobs.nox.i686-linux
|
|
|
|
jobs.nox.x86_64-linux
|
|
|
|
jobs.nox.x86_64-darwin
|
|
|
|
# Ensure that X11/GTK+ are in order.
|
|
|
|
jobs.thunderbird.x86_64-linux
|
|
|
|
jobs.thunderbird.i686-linux
|
|
|
|
# Ensure that basic stuff works on darwin
|
|
|
|
jobs.git.x86_64-darwin
|
|
|
|
jobs.mysql.x86_64-darwin
|
|
|
|
jobs.vim.x86_64-darwin
|
2017-02-09 14:09:47 -07:00
|
|
|
] ++ lib.collect lib.isDerivation jobs.stdenvBootstrapTools
|
|
|
|
++ lib.collect lib.isDerivation jobs.lib-tests;
|
2016-10-12 10:11:13 -06:00
|
|
|
};
|
2017-01-18 06:54:08 -07:00
|
|
|
} // (lib.optionalAttrs (builtins.elem "i686-linux" supportedSystems) {
|
2015-10-23 05:04:10 -06:00
|
|
|
stdenvBootstrapTools.i686-linux =
|
|
|
|
{ inherit (import ../stdenv/linux/make-bootstrap-tools.nix { system = "i686-linux"; }) dist test; };
|
2017-01-18 06:54:08 -07:00
|
|
|
}) // (lib.optionalAttrs (builtins.elem "x86_64-linux" supportedSystems) {
|
2015-10-23 05:04:10 -06:00
|
|
|
stdenvBootstrapTools.x86_64-linux =
|
|
|
|
{ inherit (import ../stdenv/linux/make-bootstrap-tools.nix { system = "x86_64-linux"; }) dist test; };
|
2017-03-08 07:08:31 -07:00
|
|
|
}) // (lib.optionalAttrs (builtins.elem "aarch64-linux" supportedSystems) {
|
|
|
|
stdenvBootstrapTools.aarch64-linux =
|
|
|
|
{ inherit (import ../stdenv/linux/make-bootstrap-tools.nix { system = "aarch64-linux"; }) dist test; };
|
2017-01-18 06:54:08 -07:00
|
|
|
}) // (lib.optionalAttrs (builtins.elem "x86_64-darwin" supportedSystems) {
|
2015-10-23 05:04:10 -06:00
|
|
|
stdenvBootstrapTools.x86_64-darwin =
|
2016-01-06 05:25:05 -07:00
|
|
|
let
|
|
|
|
bootstrap = import ../stdenv/darwin/make-bootstrap-tools.nix { system = "x86_64-darwin"; };
|
|
|
|
in {
|
|
|
|
# Lightweight distribution and test
|
|
|
|
inherit (bootstrap) dist test;
|
|
|
|
# Test a full stdenv bootstrap from the bootstrap tools definition
|
|
|
|
inherit (bootstrap.test-pkgs) stdenv;
|
|
|
|
};
|
2017-01-18 06:54:08 -07:00
|
|
|
}) // (mapTestOn ((packagePlatforms pkgs) // rec {
|
2015-09-15 03:46:20 -06:00
|
|
|
haskell.compiler = packagePlatforms pkgs.haskell.compiler;
|
2015-05-29 03:25:26 -06:00
|
|
|
haskellPackages = packagePlatforms pkgs.haskellPackages;
|
2011-08-06 04:28:24 -06:00
|
|
|
|
2016-08-28 10:18:44 -06:00
|
|
|
# Language packages disabled in https://github.com/NixOS/nixpkgs/commit/ccd1029f58a3bb9eca32d81bf3f33cb4be25cc66
|
2015-11-24 02:14:16 -07:00
|
|
|
|
2016-09-18 05:34:28 -06:00
|
|
|
#emacsPackagesNg = packagePlatforms pkgs.emacsPackagesNg;
|
2016-08-28 10:18:44 -06:00
|
|
|
#rPackages = packagePlatforms pkgs.rPackages;
|
2016-02-10 05:50:31 -07:00
|
|
|
ocamlPackages = { };
|
|
|
|
perlPackages = { };
|
2016-05-10 09:15:12 -06:00
|
|
|
pythonPackages = {
|
|
|
|
pandas = unix;
|
2016-05-11 04:35:51 -06:00
|
|
|
scikitlearn = unix;
|
2016-05-10 09:15:12 -06:00
|
|
|
};
|
2016-02-10 05:50:31 -07:00
|
|
|
python2Packages = { };
|
|
|
|
python27Packages = { };
|
|
|
|
python3Packages = { };
|
2016-05-19 04:05:39 -06:00
|
|
|
python35Packages = {
|
|
|
|
blaze = unix;
|
|
|
|
pandas = unix;
|
|
|
|
scikitlearn = unix;
|
|
|
|
};
|
2015-02-25 11:27:23 -07:00
|
|
|
} ));
|
2010-08-09 18:09:29 -06:00
|
|
|
|
2013-03-26 04:57:44 -06:00
|
|
|
in jobs
|