3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/Thrift/default.nix
2014-07-02 08:38:02 -04:00

15 lines
414 B
Nix

{ 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;
};
})