haskell-cryptohash-cryptoapi: add version 0.1.0

This commit is contained in:
Peter Simons 2013-04-05 23:13:05 +02:00
parent 5014149810
commit f88d383b31
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{ cabal, cereal, cryptoApi, cryptohash, tagged }:
cabal.mkDerivation (self: {
pname = "cryptohash-cryptoapi";
version = "0.1.0";
sha256 = "06b62ddwx2mp71dzaj8h88vw2c6nv3rj8n6d3d9vmqa7cws3mjkx";
buildDepends = [ cereal cryptoApi cryptohash tagged ];
meta = {
homepage = "http://github.com/vincenthz/hs-cryptohash-cryptoapi";
description = "Crypto-api interfaces for cryptohash";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -669,6 +669,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
cryptohash = callPackage ../development/libraries/haskell/cryptohash {};
cryptohashCryptoapi = callPackage ../development/libraries/haskell/cryptohash-cryptoapi {};
cryptoNumbers = callPackage ../development/libraries/haskell/crypto-numbers {};
cryptoPubkeyTypes = callPackage ../development/libraries/haskell/crypto-pubkey-types {};