about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/connection/default.nix
blob: 4a2c8ff77920eeab93e0b354ea7be334294baf55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, cprngAes, dataDefaultClass, network, socks, tls, x509
, x509Store, x509System, x509Validation
}:

cabal.mkDerivation (self: {
  pname = "connection";
  version = "0.2.1";
  sha256 = "1wdjfc9lld3wkr7ncjkszmrwqp74p994ml3chymniz440xg1lxwy";
  buildDepends = [
    cprngAes dataDefaultClass network socks tls x509 x509Store
    x509System x509Validation
  ];
  meta = {
    homepage = "http://github.com/vincenthz/hs-connection";
    description = "Simple and easy network connections API";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})