2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, cereal, entropy, largeword, tagged }:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "crypto-api";
|
2011-10-19 18:36:51 +02:00
|
|
|
version = "0.7";
|
|
|
|
sha256 = "0831rmkq603ga9py5xxfw77qixdliyh15dxh9ls7rd7ia6sqjvx0";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [ cereal entropy largeword tagged ];
|
2011-08-08 00:51:22 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://trac.haskell.org/crypto-api/wiki";
|
|
|
|
description = "A generic interface for cryptographic operations";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|