Skip to content
Snippets Groups Projects
Commit 7c4e8afb authored by Daniel Firth's avatar Daniel Firth
Browse files

x509: init at 1.7.7

parent 547d5bb3
Branches
Tags
No related merge requests found
......@@ -551,5 +551,6 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "warp-tls" "3.3.3"
, callHackage "witherable" "0.4.2"
, callHackage "with-utf8" "1.0.2.3"
, callHackage "x509" "1.7.7"
, callHackage "xml-conduit" "1.9.1.1"
]
......@@ -711,6 +711,8 @@ final: prev: with pkgs.haskell.lib; {
witherable = prev.callPackage (./pkgs/witherable.nix) { };
x509 = prev.callPackage (./pkgs/x509.nix) { };
xml-conduit = prev.callPackage (./pkgs/xml-conduit.nix) { };
}
{ mkDerivation
, asn1-encoding
, asn1-parse
, asn1-types
, base
, bytestring
, containers
, cryptonite
, hourglass
, lib
, memory
, mtl
, pem
, tasty
, tasty-quickcheck
, transformers
}:
mkDerivation {
pname = "x509";
version = "1.7.7";
sha256 = "59c6920fe5d53f1e6a15176bd853f1a18422be87cd8496772ff4571828a568fe";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
asn1-encoding
asn1-parse
asn1-types
base
bytestring
containers
cryptonite
hourglass
memory
pem
transformers
];
testHaskellDepends = [
asn1-types
base
bytestring
cryptonite
hourglass
mtl
tasty
tasty-quickcheck
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/vincenthz/hs-certificate";
description = "X509 reader and writer";
license = lib.licenses.bsd3;
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