nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / libraries / boost / 1.78.nix
blob3e95cf95a5ea659b27b22e9bf9873c53a5797740
1 { callPackage, fetchurl, ... }@args:
3 callPackage ./generic.nix (
4   args
5   // rec {
6     version = "1.78.0";
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_78_0.html
16       sha256 = "8681f175d4bdb26c52222665793eef08490d7758529330f98d3b29dd0735bccc";
17     };
18   }