2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, Cabal, network, openssl, time }:
|
2012-01-24 16:05:57 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "HsOpenSSL";
|
|
|
|
version = "0.10.1.2";
|
|
|
|
sha256 = "0najn3749s6jxqavpxw7q58jzsvli06sxjgkvs3lidasv6jhwmxh";
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [ Cabal 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
|
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|