summary refs log tree commit diff
path: root/pkgs/development/libraries/thrift
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2016-01-07 18:37:18 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2016-01-07 21:36:28 +0100
commit972c5641e404767df6cc47d290275d9d9b00bcbb (patch)
treef53732b4472e9484d6d490203b7f573350150952 /pkgs/development/libraries/thrift
parent99a08b3b4f96d3720f46b11fc49d9079596e1e09 (diff)
downloadnixpkgs-972c5641e404767df6cc47d290275d9d9b00bcbb.tar
nixpkgs-972c5641e404767df6cc47d290275d9d9b00bcbb.tar.gz
nixpkgs-972c5641e404767df6cc47d290275d9d9b00bcbb.tar.bz2
nixpkgs-972c5641e404767df6cc47d290275d9d9b00bcbb.tar.lz
nixpkgs-972c5641e404767df6cc47d290275d9d9b00bcbb.tar.xz
nixpkgs-972c5641e404767df6cc47d290275d9d9b00bcbb.tar.zst
nixpkgs-972c5641e404767df6cc47d290275d9d9b00bcbb.zip
thrift: 0.9.2 -> 0.9.3
Add Twisted as build input so that we can continue to have Python
support. (./configure disables Python support unless it finds the
'trial' program, from Twisted.) I don't know whether upstream intended
that, because it seems perfectly fine to run thrift + Python without
Twisted. (Only the TTwisted transport uses Twisted...)

Ah, Thrift use Twisted in its unit tests. Even when we pass
--enable-tests=no to ./configure :-D
Diffstat (limited to 'pkgs/development/libraries/thrift')
-rw-r--r--pkgs/development/libraries/thrift/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/thrift/default.nix b/pkgs/development/libraries/thrift/default.nix
index a09a8a530a5..e48ce231590 100644
--- a/pkgs/development/libraries/thrift/default.nix
+++ b/pkgs/development/libraries/thrift/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchurl, boost, zlib, libevent, openssl, python, pkgconfig, bison
-, flex
+, flex, twisted
 }:
 
 stdenv.mkDerivation rec {
   name = "thrift-${version}";
-  version = "0.9.2";
+  version = "0.9.3";
 
   src = fetchurl {
     url = "http://archive.apache.org/dist/thrift/${version}/${name}.tar.gz";
-    sha256 = "0w4m6hjmgr1wqac9p5zyfxx2wwqay730qi14fzxba7f46hwhvxff";
+    sha256 = "17lnchan9q3qdg222rgjjai6819j9k755s239phdv6n0183hlx5h";
   };
 
   #enableParallelBuilding = true; problems on hydra
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
   pythonPath = [];
 
   buildInputs = [
-    boost zlib libevent openssl python pkgconfig bison flex
+    boost zlib libevent openssl python pkgconfig bison flex twisted
   ];
 
   preConfigure = "export PY_PREFIX=$out";