haskell-cryptocipher: dropped obsolete version 0.2.14

svn path=/nixpkgs/trunk/; revision=30178
This commit is contained in:
Peter Simons
2011-11-02 01:42:05 +00:00
parent 3447d62e64
commit 9567a44892
3 changed files with 1 additions and 23 deletions

View File

@@ -0,0 +1,20 @@
{ cabal, cereal, cryptoApi, cryptoPubkeyTypes, primitive, tagged
, vector
}:
cabal.mkDerivation (self: {
pname = "cryptocipher";
version = "0.3.0";
sha256 = "17jbzssdbprspadz5ynyam60l5iw7s809irklfg1ii89x26mlyix";
isLibrary = true;
isExecutable = true;
buildDepends = [
cereal cryptoApi cryptoPubkeyTypes 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.ghc.meta.platforms;
};
})