2021-03-15 13:47:46 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, bison
|
|
|
|
}:
|
2014-09-14 23:10:03 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "boost-build";
|
2021-03-15 13:47:46 +00:00
|
|
|
version = "4.4.1";
|
2017-06-27 16:00:40 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "boostorg";
|
|
|
|
repo = "build";
|
|
|
|
rev = version;
|
2021-03-15 13:47:46 +00:00
|
|
|
sha256 = "1r4rwlq87ydmsdqrik4ly5iai796qalvw7603mridg2nwcbbnf54";
|
2014-09-14 23:10:03 +01:00
|
|
|
};
|
|
|
|
|
2021-05-11 14:21:13 +01:00
|
|
|
patches = [
|
|
|
|
# Upstream defaults to gcc on darwin, but we use clang.
|
|
|
|
./darwin-default-toolset.patch
|
|
|
|
];
|
|
|
|
|
2021-03-15 13:47:46 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
bison
|
|
|
|
];
|
2014-09-14 23:10:03 +01:00
|
|
|
|
|
|
|
buildPhase = ''
|
2021-03-15 13:47:46 +00:00
|
|
|
runHook preBuild
|
2017-06-27 16:00:40 +01:00
|
|
|
./bootstrap.sh
|
2021-03-15 13:47:46 +00:00
|
|
|
runHook postBuild
|
2014-09-14 23:10:03 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2021-03-15 13:47:46 +00:00
|
|
|
runHook preInstall
|
|
|
|
./b2 install --prefix="$out"
|
|
|
|
ln -s b2 "$out/bin/bjam"
|
|
|
|
runHook postInstall
|
2014-09-14 23:10:03 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2021-03-15 13:47:46 +00:00
|
|
|
homepage = "https://www.boost.org/build/";
|
2021-01-23 12:26:19 +00:00
|
|
|
license = lib.licenses.boost;
|
2014-09-14 23:10:03 +01:00
|
|
|
platforms = platforms.unix;
|
2017-06-27 16:00:40 +01:00
|
|
|
maintainers = with maintainers; [ ivan-tkatchev ];
|
2014-09-14 23:10:03 +01:00
|
|
|
};
|
|
|
|
}
|