Add Thrift-0.6.0.1

This commit is contained in:
Chris Heller
2014-07-02 00:14:06 -04:00
parent f666bf4ddf
commit 7efe90a6e3
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ cabal, binary, HTTP, network }:
cabal.mkDerivation (self: {
pname = "Thrift";
version = "0.6.0.1";
sha256 = "0yk496zql0jpyj83ybdzffc03sylf5pwn093k831m99j54l2r5yv";
buildDepends = [ binary HTTP network ];
meta = {
homepage = "http://thrift.apache.org";
description = "Haskell bindings for the Apache Thrift RPC system";
license = "unknown";
platforms = self.ghc.meta.platforms;
};
})