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";
|
2012-03-05 12:58:21 +01:00
|
|
|
version = "0.10.1.3";
|
|
|
|
sha256 = "0r6gns729nfaxlig0sxlal5cx4ipyjk62zrmwn5i1i7lighp10y0";
|
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";
|
|
|
|
description = "(Incomplete) OpenSSL binding for Haskell";
|
|
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|