Merge pull request #12216 from bjornfor/thrift

thrift: 0.9.2 -> 0.9.3

+7 -5
+4 -4
pkgs/development/libraries/thrift/default.nix
··· 1 1 { stdenv, fetchurl, boost, zlib, libevent, openssl, python, pkgconfig, bison 2 - , flex 2 + , flex, twisted 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "thrift-${version}"; 7 - version = "0.9.2"; 7 + version = "0.9.3"; 8 8 9 9 src = fetchurl { 10 10 url = "http://archive.apache.org/dist/thrift/${version}/${name}.tar.gz"; 11 - sha256 = "0w4m6hjmgr1wqac9p5zyfxx2wwqay730qi14fzxba7f46hwhvxff"; 11 + sha256 = "17lnchan9q3qdg222rgjjai6819j9k755s239phdv6n0183hlx5h"; 12 12 }; 13 13 14 14 #enableParallelBuilding = true; problems on hydra ··· 18 18 pythonPath = []; 19 19 20 20 buildInputs = [ 21 - boost zlib libevent openssl python pkgconfig bison flex 21 + boost zlib libevent openssl python pkgconfig bison flex twisted 22 22 ]; 23 23 24 24 preConfigure = "export PY_PREFIX=$out";
+3 -1
pkgs/top-level/all-packages.nix
··· 8519 8519 python = python2; 8520 8520 }; 8521 8521 8522 - thrift = callPackage ../development/libraries/thrift { }; 8522 + thrift = callPackage ../development/libraries/thrift { 8523 + inherit (pythonPackages) twisted; 8524 + }; 8523 8525 8524 8526 tidyp = callPackage ../development/libraries/tidyp { }; 8525 8527