Skip to content
Snippets Groups Projects
Unverified Commit c2db3431 authored by Marijan Petričević's avatar Marijan Petričević
Browse files

RSA: init at 2.4.1

parent 4692c567
No related merge requests found
......@@ -822,6 +822,7 @@ let packages =
, retry = H.callHackage "retry" "0.9.3.0"
, rope-utf16-splay = H.callHackage "rope-utf16-splay" "0.4.0.0"
, row-types = H.callHackage "row-types" "1.0.1.2"
, RSA = H.callHackage "RSA" "2.4.1"
, safe-coloured-text-layout =
H.callHackage "safe-coloured-text-layout" "0.0.0.0"
, safe-coloured-text-terminfo =
......
......@@ -53,6 +53,8 @@ self: with pkgs.haskell.lib; {
QuickCheck = self.callPackage (./pkgs/QuickCheck.nix) { };
RSA = self.callPackage (./pkgs/RSA.nix) { };
SHA = self.callPackage (./pkgs/SHA.nix) { };
StateVar = self.callPackage (./pkgs/StateVar.nix) { };
......
{ mkDerivation
, QuickCheck
, SHA
, base
, binary
, bytestring
, crypto-api
, crypto-pubkey-types
, lib
, tagged
, test-framework
, test-framework-quickcheck2
}:
mkDerivation {
pname = "RSA";
version = "2.4.1";
sha256 = "72c5d8c45ef1013e0e8aff763bb8894df0f022f28e698e33ae87bbdb33d69041";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
binary
bytestring
crypto-api
crypto-pubkey-types
SHA
];
testHaskellDepends = [
base
binary
bytestring
crypto-api
crypto-pubkey-types
QuickCheck
SHA
tagged
test-framework
test-framework-quickcheck2
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1.";
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