mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
|
{ lib
|
||
|
, callPackage
|
||
|
, boost-build
|
||
|
, fetchurl
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
# for boost 1.55 we need to use 1.56's b2
|
||
|
# since 1.55's build system is not working
|
||
|
# with our derivation
|
||
|
useBoost156 = rec {
|
||
|
version = "1.56.0";
|
||
|
src = fetchurl {
|
||
|
url = "mirror://sourceforge/boost/boost_${lib.replaceStrings ["."] ["_"] version}.tar.bz2";
|
||
|
sha256 = "07gz62nj767qzwqm3xjh11znpyph8gcii0cqhnx7wvismyn34iqk";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
makeBoost = file:
|
||
|
lib.fix (self:
|
||
|
callPackage file {
|
||
|
boost-build = boost-build.override {
|
||
|
# useBoost allows us passing in src and version from
|
||
|
# the derivation we are building to get a matching b2 version.
|
||
|
useBoost =
|
||
|
if lib.versionAtLeast self.version "1.56"
|
||
|
then self
|
||
|
else useBoost156; # see above
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
in {
|
||
|
boost155 = makeBoost ./1.55.nix;
|
||
|
boost159 = makeBoost ./1.59.nix;
|
||
|
boost160 = makeBoost ./1.60.nix;
|
||
|
boost165 = makeBoost ./1.65.nix;
|
||
|
boost166 = makeBoost ./1.66.nix;
|
||
|
boost167 = makeBoost ./1.67.nix;
|
||
|
boost168 = makeBoost ./1.68.nix;
|
||
|
boost169 = makeBoost ./1.69.nix;
|
||
|
boost170 = makeBoost ./1.70.nix;
|
||
|
boost171 = makeBoost ./1.71.nix;
|
||
|
boost172 = makeBoost ./1.72.nix;
|
||
|
boost173 = makeBoost ./1.73.nix;
|
||
|
boost174 = makeBoost ./1.74.nix;
|
||
|
boost175 = makeBoost ./1.75.nix;
|
||
|
}
|