eec2c680c7
- HsOpenSSL: updated to version 0.10.3 - RSA: downgraded to version 1.0.6.3 - language-javascript: updated to version 0.5.1 - maude: fixed build - pem: added version 0.1.0 svn path=/nixpkgs/trunk/; revision=33811
17 lines
533 B
Nix
17 lines
533 B
Nix
{ cabal, network, openssl, time }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HsOpenSSL";
|
|
version = "0.10.3";
|
|
sha256 = "1f876xbx0a8xrs4ainmb79nisr6pflslzk26vk4psxgn9a159cvk";
|
|
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 ];
|
|
};
|
|
})
|