2014-01-29 11:45:06 +01:00
|
|
|
{ cabal, cprngAes, dataDefaultClass, network, socks, tls, x509
|
|
|
|
, x509Store, x509System, x509Validation
|
2013-10-13 10:42:20 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "connection";
|
2014-04-17 21:12:43 +02:00
|
|
|
version = "0.2.1";
|
|
|
|
sha256 = "1wdjfc9lld3wkr7ncjkszmrwqp74p994ml3chymniz440xg1lxwy";
|
2013-10-13 10:42:20 +02:00
|
|
|
buildDepends = [
|
2014-01-29 11:45:06 +01:00
|
|
|
cprngAes dataDefaultClass network socks tls x509 x509Store
|
|
|
|
x509System x509Validation
|
2013-10-13 10:42:20 +02:00
|
|
|
];
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|