Files
nixpkgs/pkgs/development/libraries/boost/1.89.nix
Martin Joerg 7161a38c25 boost189: move cygwin patch to generic.nix
Since #495346, `boost189.override { patches = ...; }` does not work as expected.
2026-03-08 12:28:29 +00:00

20 lines
591 B
Nix

{ callPackage, fetchurl, ... }@args:
callPackage ./generic.nix (
args
// rec {
version = "1.89.0";
src = fetchurl {
urls = [
"mirror://sourceforge/boost/boost_${builtins.replaceStrings [ "." ] [ "_" ] version}.tar.bz2"
"https://boostorg.jfrog.io/artifactory/main/release/${version}/source/boost_${
builtins.replaceStrings [ "." ] [ "_" ] version
}.tar.bz2"
];
# SHA256 from http://www.boost.org/users/history/version_1_89_0.html
sha256 = "85a33fa22621b4f314f8e85e1a5e2a9363d22e4f4992925d4bb3bc631b5a0c7a";
};
}
)