2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, network, openssl, time }:
|
2012-01-24 16:05:57 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "HsOpenSSL";
|
2013-09-06 13:13:30 +02:00
|
|
|
version = "0.10.3.4";
|
|
|
|
sha256 = "1xgnzivphnzb4yf31406yg5fjycrfypwrlxi2s8lfzgja8m1l7h5";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ network time ];
|
2012-01-24 16:05:57 +01:00
|
|
|
extraLibraries = [ openssl ];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/phonohawk/HsOpenSSL";
|
2013-09-06 13:13:30 +02:00
|
|
|
description = "Partial OpenSSL binding for Haskell";
|
2012-01-24 16:05:57 +01:00
|
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-01-24 16:05:57 +01:00
|
|
|
};
|
|
|
|
})
|