05d92999a0
- HDBC-postgresql updated to version 2.3.2.1 - HsOpenSSL updated to version 0.10.1.3 - hledger-web updated to version 0.17.1 - persistent updated to version 0.8.0.2 - xml-conduit updated to version 0.5.3.1 - haddock: added version 2.10.0 svn path=/nixpkgs/trunk/; revision=32799
20 lines
586 B
Nix
20 lines
586 B
Nix
{ cabal, network, openssl, time }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HsOpenSSL";
|
|
version = "0.10.1.3";
|
|
sha256 = "0r6gns729nfaxlig0sxlal5cx4ipyjk62zrmwn5i1i7lighp10y0";
|
|
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
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|