mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
17 lines
530 B
Nix
17 lines
530 B
Nix
{ cabal, network, openssl, time }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HsOpenSSL";
|
|
version = "0.10.3.6";
|
|
sha256 = "0h2q9isbrfvsyr4yzcv7y0vd3gha8ym67l4sn7zlz39n376i2z10";
|
|
buildDepends = [ network time ];
|
|
extraLibraries = [ openssl ];
|
|
meta = {
|
|
homepage = "https://github.com/phonohawk/HsOpenSSL";
|
|
description = "Partial OpenSSL binding for Haskell";
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|