nixpkgs/pkgs/development/libraries/thrift/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, boost, zlib, libevent, openssl, python, pkgconfig, bison
, flex, twisted
}:
2013-12-13 10:16:40 +00:00
stdenv.mkDerivation rec {
name = "thrift-${version}";
version = "0.9.3";
2013-12-13 10:16:40 +00:00
src = fetchurl {
url = "http://archive.apache.org/dist/thrift/${version}/${name}.tar.gz";
sha256 = "17lnchan9q3qdg222rgjjai6819j9k755s239phdv6n0183hlx5h";
2013-12-13 10:16:40 +00:00
};
#enableParallelBuilding = true; problems on hydra
# Workaround to make the python wrapper not drop this package:
2014-10-19 17:54:33 +00:00
# pythonFull.buildEnv.override { extraLibs = [ thrift ]; }
pythonPath = [];
buildInputs = [
boost zlib libevent openssl python pkgconfig bison flex twisted
];
2013-12-13 10:16:40 +00:00
preConfigure = "export PY_PREFIX=$out";
# TODO: package boost-test, so we can run the test suite. (Currently it fails
# to find libboost_unit_test_framework.a.)
configureFlags = "--enable-tests=no";
doCheck = false;
2013-12-13 10:16:40 +00:00
meta = with stdenv.lib; {
2013-12-13 10:16:40 +00:00
description = "Library for scalable cross-language services";
homepage = http://thrift.apache.org/;
license = licenses.asl20;
2014-10-09 16:57:18 +00:00
platforms = platforms.linux ++ platforms.darwin;
maintainers = [ maintainers.bjornfor ];
2013-12-13 10:16:40 +00:00
};
}