haskell-crypto-cipher-tests: add version 0.0.1

This commit is contained in:
Peter Simons 2013-08-11 18:52:01 +02:00
parent 30cb6ebdd1
commit 60a58dda25
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ cabal, byteable, cryptoCipherTypes, HUnit, mtl, QuickCheck
, securemem, testFramework, testFrameworkHunit
, testFrameworkQuickcheck2
}:
cabal.mkDerivation (self: {
pname = "crypto-cipher-tests";
version = "0.0.1";
sha256 = "1g5rxx07s23pr0vam0bjlp3qwxzqa3m6x6gbv88fhkmbqwxiq2fh";
buildDepends = [
byteable cryptoCipherTypes HUnit mtl QuickCheck securemem
testFramework testFrameworkHunit testFrameworkQuickcheck2
];
meta = {
homepage = "http://github.com/vincenthz/hs-crypto-cipher";
description = "Generic cryptography cipher tests";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -756,6 +756,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
cryptocipher = callPackage ../development/libraries/haskell/cryptocipher {}; cryptocipher = callPackage ../development/libraries/haskell/cryptocipher {};
cryptoCipherTests = callPackage ../development/libraries/haskell/crypto-cipher-tests {};
cryptoConduit = callPackage ../development/libraries/haskell/crypto-conduit {}; cryptoConduit = callPackage ../development/libraries/haskell/crypto-conduit {};
cryptohash = callPackage ../development/libraries/haskell/cryptohash {}; cryptohash = callPackage ../development/libraries/haskell/cryptohash {};