summary refs log tree commit diff
path: root/pkgs/development/libraries/folly
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-09-03 14:31:10 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-09-03 14:31:10 -0700
commit3df7b15932909cfa1081c76e37439b6ed6e02d0a (patch)
treeb87eedf4bae5617ad63baab63d4429d1757b7977 /pkgs/development/libraries/folly
parent799a02f209ba5d9f33add87bd20023f6b61f2598 (diff)
downloadnixpkgs-3df7b15932909cfa1081c76e37439b6ed6e02d0a.tar
nixpkgs-3df7b15932909cfa1081c76e37439b6ed6e02d0a.tar.gz
nixpkgs-3df7b15932909cfa1081c76e37439b6ed6e02d0a.tar.bz2
nixpkgs-3df7b15932909cfa1081c76e37439b6ed6e02d0a.tar.lz
nixpkgs-3df7b15932909cfa1081c76e37439b6ed6e02d0a.tar.xz
nixpkgs-3df7b15932909cfa1081c76e37439b6ed6e02d0a.tar.zst
nixpkgs-3df7b15932909cfa1081c76e37439b6ed6e02d0a.zip
folly: 0.52.0 -> 0.57.0
Diffstat (limited to 'pkgs/development/libraries/folly')
-rw-r--r--pkgs/development/libraries/folly/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/libraries/folly/default.nix b/pkgs/development/libraries/folly/default.nix
index 0cea9413bae..5ca5fe638ef 100644
--- a/pkgs/development/libraries/folly/default.nix
+++ b/pkgs/development/libraries/folly/default.nix
@@ -2,19 +2,18 @@
 , google-gflags, python, libiberty, openssl }:
 
 stdenv.mkDerivation rec {
-  version = "0.52.0";
+  version = "0.57.0";
   name = "folly-${version}";
 
   src = fetchFromGitHub {
     owner = "facebook";
     repo = "folly";
     rev = "v${version}";
-    sha256 = "16g3hpy1gy56zqnhwzkvzzpm6dgm01qa9yaigmrqr9b59c3k6cqf";
+    sha256 = "12b9bkwmndfwmsknc209kpplxn9wqmwr3p2h0l2szrppq4qqyfq9";
   };
 
-  buildInputs = [ libiberty boost.lib libevent double_conversion glog google-gflags openssl ];
-
-  nativeBuildInputs = [ autoreconfHook python boost ];
+  nativeBuildInputs = [ autoreconfHook python ];
+  buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ];
 
   postUnpack = "sourceRoot=\${sourceRoot}/folly";
   preBuild = ''