Skip to content

Commit 7ace1a7

Browse files
authored
boost189: init at 1.89.0 (#434269)
2 parents 7d97f74 + 1d45f88 commit 7ace1a7

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{ callPackage, fetchurl, ... }@args:
2+
3+
callPackage ./generic.nix (
4+
args
5+
// rec {
6+
version = "1.89.0";
7+
8+
src = fetchurl {
9+
urls = [
10+
"mirror://sourceforge/boost/boost_${builtins.replaceStrings [ "." ] [ "_" ] version}.tar.bz2"
11+
"https://boostorg.jfrog.io/artifactory/main/release/${version}/source/boost_${
12+
builtins.replaceStrings [ "." ] [ "_" ] version
13+
}.tar.bz2"
14+
];
15+
# SHA256 from http://www.boost.org/users/history/version_1_89_0.html
16+
sha256 = "85a33fa22621b4f314f8e85e1a5e2a9363d22e4f4992925d4bb3bc631b5a0c7a";
17+
};
18+
}
19+
)

pkgs/development/libraries/boost/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@ in
3030
boost186 = makeBoost ./1.86.nix;
3131
boost187 = makeBoost ./1.87.nix;
3232
boost188 = makeBoost ./1.88.nix;
33+
boost189 = makeBoost ./1.89.nix;
3334
}

pkgs/top-level/all-packages.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7394,6 +7394,7 @@ with pkgs;
73947394
boost186
73957395
boost187
73967396
boost188
7397+
boost189
73977398
;
73987399

73997400
boost = boost187;

0 commit comments

Comments
 (0)