summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/RSA/default.nix
blob: dd8e607f3b72ebb27ad7b9824b30f92ab48de0ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ cabal, binary, pureMD5, random, SHA }:

cabal.mkDerivation (self: {
  pname = "RSA";
  version = "1.0.6.2";
  sha256 = "0sabvwzgjg6nv5m3x9cjpk5q62r8vhi3kn858ask15frsi7lzhwk";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ binary pureMD5 random SHA ];
  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;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})