bc7c4c1951
- base16-bytestring: updated to version 0.1.1.5 - base64-bytestring: updated to version 0.1.1.3 - bloomfilter: updated to version 1.2.6.10 - cryptocipher: updated to version 0.3.5 - gtk: updated to version 0.12.3.1 - http-conduit: updated to version 1.4.1.9 - snap-core: updated to version 0.9.0 - snap-server: updated to version 0.9.0 - stringsearch: updated to version 0.3.6.3 - text: updated to version 0.11.2.2 - void: updated to version 0.5.6 svn path=/nixpkgs/trunk/; revision=34542
22 lines
650 B
Nix
22 lines
650 B
Nix
{ cabal, cereal, cpu, cryptoApi, cryptoPubkeyTypes, primitive
|
|
, tagged, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "cryptocipher";
|
|
version = "0.3.5";
|
|
sha256 = "02qc1rr9l51dnk0sn7js8zv2w2qhkha3ik828j5s729h80cyw99s";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
cereal cpu 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;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|