summary refs log tree commit diff
path: root/pkgs/development/libraries/boost
diff options
context:
space:
mode:
authorIlya Kolpakov <ilya.kolpakov@gmail.com>2017-02-15 18:29:39 +0100
committerIlya Kolpakov <ilya.kolpakov@gmail.com>2017-02-15 18:29:39 +0100
commit6d8235210d34a914e55589f056626561c6eb1eaf (patch)
treea2c4b38f1d3f85a6e9aa7cc075cb3db539739f3e /pkgs/development/libraries/boost
parentaba35a5c2df62876c4835c551ef315c245055088 (diff)
downloadnixpkgs-6d8235210d34a914e55589f056626561c6eb1eaf.tar
nixpkgs-6d8235210d34a914e55589f056626561c6eb1eaf.tar.gz
nixpkgs-6d8235210d34a914e55589f056626561c6eb1eaf.tar.bz2
nixpkgs-6d8235210d34a914e55589f056626561c6eb1eaf.tar.lz
nixpkgs-6d8235210d34a914e55589f056626561c6eb1eaf.tar.xz
nixpkgs-6d8235210d34a914e55589f056626561c6eb1eaf.tar.zst
nixpkgs-6d8235210d34a914e55589f056626561c6eb1eaf.zip
boost: 1.63.0 (not default)
Diffstat (limited to 'pkgs/development/libraries/boost')
-rw-r--r--pkgs/development/libraries/boost/1.63.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/libraries/boost/1.63.nix b/pkgs/development/libraries/boost/1.63.nix
new file mode 100644
index 00000000000..c4749bc3ee4
--- /dev/null
+++ b/pkgs/development/libraries/boost/1.63.nix
@@ -0,0 +1,12 @@
+{ stdenv, callPackage, fetchurl, ... } @ args:
+
+callPackage ./generic.nix (args // rec {
+  version = "1.63.0";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/boost/boost_1_63_0.tar.bz2";
+    # SHA256 from http://www.boost.org/users/history/version_1_63_0.html
+    sha256 = "beae2529f759f6b3bf3f4969a19c2e9d6f0c503edcb2de4a61d1428519fcb3b0";
+  };
+
+})