nixpkgs/pkgs/development/libraries/haskell/RSA/default.nix
Peter Simons ac569c9b63 haskell-RSA: updated to version 1.0.6.2
svn path=/nixpkgs/trunk/; revision=29419
2011-09-21 16:47:07 +00:00

20 lines
568 B
Nix

{ 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
self.stdenv.lib.maintainers.simons
];
};
})