Added complete yesod.

Some downgrades were necessary.

svn path=/nixpkgs/trunk/; revision=28364
This commit is contained in:
Andres Löh
2011-08-07 22:51:22 +00:00
parent 75dfd9d3c6
commit fd258d6fe1
35 changed files with 571 additions and 25 deletions

View File

@@ -0,0 +1,17 @@
{cabal, cereal, cryptoApi, primitive, tagged, vector} :
cabal.mkDerivation (self : {
pname = "cryptocipher";
version = "0.2.14";
sha256 = "1r91d9sqc53c628z378fyah7vvmkakvxpwbslam0yhfgp2p0l23z";
propagatedBuildInputs = [
cereal cryptoApi primitive tagged vector
];
meta = {
homepage = "http://github.com/vincenthz/hs-cryptocipher";
description = "Symmetrical Block, Stream and PubKey Ciphers";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})