summary refs log tree commit diff
path: root/pkgs/development/libraries/boost/1.62.nix
diff options
context:
space:
mode:
authorAristid Breitkreuz <aristidb@gmail.com>2016-12-19 16:00:46 +0100
committerAristid Breitkreuz <aristidb@gmail.com>2016-12-19 16:00:46 +0100
commitcc30f5dd5e7a277b2a920878a0fe04a6f103b9c2 (patch)
tree4bad6f8aa687c96a3754e964323981a69c9eeca7 /pkgs/development/libraries/boost/1.62.nix
parent2fdd4973ec4e867ff76ef6608ac75e89aa0d4514 (diff)
downloadnixpkgs-cc30f5dd5e7a277b2a920878a0fe04a6f103b9c2.tar
nixpkgs-cc30f5dd5e7a277b2a920878a0fe04a6f103b9c2.tar.gz
nixpkgs-cc30f5dd5e7a277b2a920878a0fe04a6f103b9c2.tar.bz2
nixpkgs-cc30f5dd5e7a277b2a920878a0fe04a6f103b9c2.tar.lz
nixpkgs-cc30f5dd5e7a277b2a920878a0fe04a6f103b9c2.tar.xz
nixpkgs-cc30f5dd5e7a277b2a920878a0fe04a6f103b9c2.tar.zst
nixpkgs-cc30f5dd5e7a277b2a920878a0fe04a6f103b9c2.zip
boost: add 1.62.0 (not default yet)
Diffstat (limited to 'pkgs/development/libraries/boost/1.62.nix')
-rw-r--r--pkgs/development/libraries/boost/1.62.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/libraries/boost/1.62.nix b/pkgs/development/libraries/boost/1.62.nix
new file mode 100644
index 00000000000..871ef392c1a
--- /dev/null
+++ b/pkgs/development/libraries/boost/1.62.nix
@@ -0,0 +1,12 @@
+{ stdenv, callPackage, fetchurl, ... } @ args:
+
+callPackage ./generic.nix (args // rec {
+  version = "1.62.0";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/boost/boost_1_62_0.tar.bz2";
+    # long-form SHA256 from www.boost.org
+    sha256 = "36c96b0f6155c98404091d8ceb48319a28279ca0333fba1ad8611eb90afb2ca0";
+  };
+
+})