mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-19 15:11:30 +00:00
36 lines
795 B
Nix
36 lines
795 B
Nix
{
|
|
lib,
|
|
callPackage,
|
|
boost-build,
|
|
fetchurl,
|
|
}:
|
|
|
|
let
|
|
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 = self;
|
|
};
|
|
}
|
|
);
|
|
in
|
|
{
|
|
boost178 = makeBoost ./1.78.nix;
|
|
boost179 = makeBoost ./1.79.nix;
|
|
boost180 = makeBoost ./1.80.nix;
|
|
boost181 = makeBoost ./1.81.nix;
|
|
boost182 = makeBoost ./1.82.nix;
|
|
boost183 = makeBoost ./1.83.nix;
|
|
boost186 = makeBoost ./1.86.nix;
|
|
boost187 = makeBoost ./1.87.nix;
|
|
boost188 = makeBoost ./1.88.nix;
|
|
boost189 = makeBoost ./1.89.nix;
|
|
boost190 = makeBoost ./1.90.nix;
|
|
boost191 = makeBoost ./1.91.nix;
|
|
}
|