17 lines
535 B
Nix
17 lines
535 B
Nix
{ cabal, network, openssl, time }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HsOpenSSL";
|
|
version = "0.10.3.2";
|
|
sha256 = "15mlllzw8ahvrx259bz5vwisdig7bvkany1qjhmz6y8v2rcplr7f";
|
|
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 ];
|
|
};
|
|
})
|