haskell-crypto-api: added version 0.7

svn path=/nixpkgs/trunk/; revision=29897
This commit is contained in:
Peter Simons 2011-10-19 16:36:51 +00:00
parent eec3529bc2
commit f7a1a82fce
3 changed files with 21 additions and 1 deletions

View File

@ -0,0 +1,18 @@
{ cabal, cereal, entropy, largeword, tagged }:
cabal.mkDerivation (self: {
pname = "crypto-api";
version = "0.7";
sha256 = "0831rmkq603ga9py5xxfw77qixdliyh15dxh9ls7rd7ia6sqjvx0";
buildDepends = [ cereal entropy largeword tagged ];
meta = {
homepage = "http://trac.haskell.org/crypto-api/wiki";
description = "A generic interface for cryptographic operations";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})

View File

@ -488,7 +488,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
Crypto = callPackage ../development/libraries/haskell/Crypto {};
cryptoApi = callPackage ../development/libraries/haskell/crypto-api {};
cryptoApi_0_6_4 = callPackage ../development/libraries/haskell/crypto-api/0.6.4.nix {};
cryptoApi_0_7 = callPackage ../development/libraries/haskell/crypto-api/0.7.nix {};
cryptoApi = self.cryptoApi_0_6_4;
cryptocipher = callPackage ../development/libraries/haskell/cryptocipher {};