3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
17 lines
535 B
Nix
17 lines
535 B
Nix
{ cabal, network, openssl, time }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HsOpenSSL";
|
|
version = "0.10.3.3";
|
|
sha256 = "04d2nd2hcbglw8blwhi3d32vazdxnvs9s52788qyllgm7gmay6a5";
|
|
buildDepends = [ network time ];
|
|
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 ];
|
|
};
|
|
})
|