summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/RSA/default.nix
blob: 53655d4676598a3d23b1ee12c164f9b85c8f2eda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, binary, cryptoApi, cryptoPubkeyTypes, DRBG, pureMD5
, QuickCheck, SHA, tagged, testFramework, testFrameworkQuickcheck2
}:

cabal.mkDerivation (self: {
  pname = "RSA";
  version = "2.1.0";
  sha256 = "0bhnnz7vp1942ac2vg0y6vsag9bm0pslnm4ix6lmw28hy6d1jk2a";
  buildDepends = [ binary cryptoApi cryptoPubkeyTypes pureMD5 SHA ];
  testDepends = [
    binary cryptoApi cryptoPubkeyTypes DRBG pureMD5 QuickCheck SHA
    tagged testFramework testFrameworkQuickcheck2
  ];
  doCheck = false;
  meta = {
    description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1.";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})