aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/boost
diff options
context:
space:
mode:
authorRasmus Rendal <rasmus@rend.al>2020-10-11 10:04:43 +0200
committerRasmus Rendal <rasmus@rend.al>2020-10-11 10:26:47 +0200
commit78b030f317c91a8e21083d98a5444bfa1ded26fc (patch)
tree52b5b9cb25e3b5a0cdcda2a358e74a4da53be756 /pkgs/development/libraries/boost
parent35e296f5e55a85a815ae22fb81259edb3a2d28d1 (diff)
boost174: init at 1.74.0
Diffstat (limited to 'pkgs/development/libraries/boost')
-rw-r--r--pkgs/development/libraries/boost/1.74.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/libraries/boost/1.74.nix b/pkgs/development/libraries/boost/1.74.nix
new file mode 100644
index 000000000000..35b4013dcb36
--- /dev/null
+++ b/pkgs/development/libraries/boost/1.74.nix
@@ -0,0 +1,15 @@
+{ stdenv, callPackage, fetchurl, fetchpatch, ... } @ args:
+
+callPackage ./generic.nix (args // rec {
+ version = "1.74.0";
+
+ src = fetchurl {
+ urls = [
+ "mirror://sourceforge/boost/boost_1_74_0.tar.bz2"
+ "https://dl.bintray.com/boostorg/release/1.74.0/source/boost_1_74_0.tar.bz2"
+ ];
+ # SHA256 from http://www.boost.org/users/history/version_1_74_0.html
+ sha256 = "83bfc1507731a0906e387fc28b7ef5417d591429e51e788417fe9ff025e116b1";
+ };
+})
+