mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
3114c599c5
The symlink bjam is created for backwards compatibility. See https://boostorg.github.io/build/manual/master/index.html#bbv2.faq.names.
42 lines
741 B
Nix
42 lines
741 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, bison
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "boost-build";
|
|
version = "4.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "boostorg";
|
|
repo = "build";
|
|
rev = version;
|
|
sha256 = "1r4rwlq87ydmsdqrik4ly5iai796qalvw7603mridg2nwcbbnf54";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
bison
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
./bootstrap.sh
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
./b2 install --prefix="$out"
|
|
ln -s b2 "$out/bin/bjam"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.boost.org/build/";
|
|
license = lib.licenses.boost;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ ivan-tkatchev ];
|
|
};
|
|
}
|