1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

haskell-cryptohash-conduit: add version 0.1.0

This commit is contained in:
Peter Simons 2014-03-19 11:44:41 +01:00
parent ac40eeb9b3
commit a18d18a424
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ cabal, conduit, cryptohash, transformers }:
cabal.mkDerivation (self: {
pname = "cryptohash-conduit";
version = "0.1.0";
sha256 = "08x45dy5crxc63gd4psryrzprz7lc5hbzjl23q56c3iqbvrx2r7w";
buildDepends = [ conduit cryptohash transformers ];
meta = {
homepage = "http://github.com/vincenthz/hs-cryptohash-conduit";
description = "cryptohash conduit";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -860,6 +860,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
cryptohash = callPackage ../development/libraries/haskell/cryptohash {};
cryptohashConduit = callPackage ../development/libraries/haskell/cryptohash-conduit {};
cryptohashCryptoapi = callPackage ../development/libraries/haskell/cryptohash-cryptoapi {};
cryptoNumbers = callPackage ../development/libraries/haskell/crypto-numbers {};