summary refs log tree commit diff
path: root/pkgs/development/libraries/folly
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2015-03-29 05:02:02 +0300
committerNikolay Amiantov <ab@fmap.me>2015-03-29 13:05:27 +0300
commit731a4019d0e3ff67974a5a5f295ff7ea6f2c00e5 (patch)
tree07cdf1f8076a7ff4168ef894f9f72acf175f7f03 /pkgs/development/libraries/folly
parentbe11af03b39cf486a16ec0a0f248ad9b2da2b065 (diff)
downloadnixpkgs-731a4019d0e3ff67974a5a5f295ff7ea6f2c00e5.tar
nixpkgs-731a4019d0e3ff67974a5a5f295ff7ea6f2c00e5.tar.gz
nixpkgs-731a4019d0e3ff67974a5a5f295ff7ea6f2c00e5.tar.bz2
nixpkgs-731a4019d0e3ff67974a5a5f295ff7ea6f2c00e5.tar.lz
nixpkgs-731a4019d0e3ff67974a5a5f295ff7ea6f2c00e5.tar.xz
nixpkgs-731a4019d0e3ff67974a5a5f295ff7ea6f2c00e5.tar.zst
nixpkgs-731a4019d0e3ff67974a5a5f295ff7ea6f2c00e5.zip
folly: update
Diffstat (limited to 'pkgs/development/libraries/folly')
-rw-r--r--pkgs/development/libraries/folly/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/folly/default.nix b/pkgs/development/libraries/folly/default.nix
index e2ac798d203..180de724d95 100644
--- a/pkgs/development/libraries/folly/default.nix
+++ b/pkgs/development/libraries/folly/default.nix
@@ -2,14 +2,14 @@
 , google-gflags, python, libiberty, openssl }:
 
 stdenv.mkDerivation rec {
-  version = "0.22.0";
+  version = "0.32.0";
   name = "folly-${version}";
 
   src = fetchFromGitHub {
     owner = "facebook";
     repo = "folly";
     rev = "v${version}";
-    sha256 = "12p7vbx73jmhf772nbqvd8imw4ihpi16cw6cwxq459r7qds4n0ca";
+    sha256 = "0yviih6b220bv6d1rg4lx1hqprqapnzfv4rv64cwjxbmz49ckmzh";
   };
 
   buildInputs = [ libiberty boost.lib libevent double_conversion glog google-gflags openssl ];
@@ -26,8 +26,8 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   meta = with stdenv.lib; {
-    description = "A YAML parser and emitter for C++";
-    homepage = https://code.google.com/p/yaml-cpp/;
+    description = "An open-source C++ library developed and used at Facebook";
+    homepage = https://github.com/facebook/folly;
     license = licenses.mit;
     # 32bit is not supported: https://github.com/facebook/folly/issues/103
     platforms = [ "x86_64-linux" ];