about summary refs log tree commit diff
path: root/pkgs/development/libraries/boost
diff options
context:
space:
mode:
authorWill Dietz <github@wdtz.org>2018-06-03 07:18:25 -0500
committerOrivej Desh <orivej@gmx.fr>2018-06-03 12:18:25 +0000
commit587b1b77f23e39d10c70c8309291e18ed97d0a36 (patch)
tree07565c411cb703ece40970373c443fe0e748fa4c /pkgs/development/libraries/boost
parent1baf5cfa7ce999011e328f5e704b5e9f8069e8cc (diff)
downloadnixlib-587b1b77f23e39d10c70c8309291e18ed97d0a36.tar
nixlib-587b1b77f23e39d10c70c8309291e18ed97d0a36.tar.gz
nixlib-587b1b77f23e39d10c70c8309291e18ed97d0a36.tar.bz2
nixlib-587b1b77f23e39d10c70c8309291e18ed97d0a36.tar.lz
nixlib-587b1b77f23e39d10c70c8309291e18ed97d0a36.tar.xz
nixlib-587b1b77f23e39d10c70c8309291e18ed97d0a36.tar.zst
nixlib-587b1b77f23e39d10c70c8309291e18ed97d0a36.zip
boost 1.67 (#41258)
Diffstat (limited to 'pkgs/development/libraries/boost')
-rw-r--r--pkgs/development/libraries/boost/1.67.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/development/libraries/boost/1.67.nix b/pkgs/development/libraries/boost/1.67.nix
new file mode 100644
index 000000000000..2831104410b1
--- /dev/null
+++ b/pkgs/development/libraries/boost/1.67.nix
@@ -0,0 +1,13 @@
+{ stdenv, callPackage, fetchurl, hostPlatform, buildPlatform, ... } @ args:
+
+callPackage ./generic.nix (args // rec {
+  version = "1.67_0";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/boost/boost_1_67_0.tar.bz2";
+    # SHA256 from http://www.boost.org/users/history/version_1_66_0.html
+    sha256 = "2684c972994ee57fc5632e03bf044746f6eb45d4920c343937a465fd67a5adba";
+  };
+
+  toolset = if stdenv.cc.isClang then "clang" else null;
+})