Skip to content
Snippets Groups Projects
Commit 9cef8fcf authored by Max Tomago's avatar Max Tomago Committed by Daniel Firth
Browse files

HsOpenSSL: init at 0.11.7.2

parent 8662642b
Branches
No related merge requests found
......@@ -99,6 +99,7 @@ let plutusLibraries =
let otherLibraries =
[ H.callHackage "HTF" "0.15.0.0"
, H.callHackage "HsOpenSSL" "0.11.7.2"
, H.callHackage "PyF" "0.11.0.0"
, H.callHackage "Stream" "0.4.7.2"
, H.callHackage "Unique" "0.4.7.9"
......
......@@ -3,6 +3,8 @@
final: prev: with pkgs.haskell.lib; {
HTF = final.callPackage (./pkgs/HTF.nix) { };
HsOpenSSL = final.callPackage (./pkgs/HsOpenSSL.nix) { };
PyF = final.callPackage (./pkgs/PyF.nix) { };
Stream = final.callPackage (./pkgs/Stream.nix) { };
......
{ mkDerivation
, Cabal
, base
, bytestring
, lib
, network
, openssl
, time
}:
mkDerivation {
pname = "HsOpenSSL";
version = "0.11.7.2";
sha256 = "8536c0939e52c990b2998a4ac5ff2b5886e1701b41b9934a87df8ec910754d7b";
revision = "3";
editedCabalFile = "0nsqxym87s48029laqba4nzwpk7nrk35x7wmpjqfnbrj82ddcshd";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [ base bytestring network time ];
librarySystemDepends = [ openssl ];
testHaskellDepends = [ base bytestring ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell-cryptography/HsOpenSSL";
description = "Partial OpenSSL binding for Haskell";
license = lib.licenses.publicDomain;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment