nixpkgs/pkgs/development/libraries/haskell/cryptocipher/default.nix
2014-08-09 13:49:24 +02:00

22 lines
650 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, cipherAes, cipherBlowfish, cipherCamellia, cipherDes
, cipherRc4, cryptoCipherTypes
}:
cabal.mkDerivation (self: {
pname = "cryptocipher";
version = "0.6.2";
sha256 = "0ip3a2as0df6drl29sryayxx22sx55v6bs60s2fh3i1nxqnydf9l";
buildDepends = [
cipherAes cipherBlowfish cipherCamellia cipherDes cipherRc4
cryptoCipherTypes
];
meta = {
homepage = "http://github.com/vincenthz/hs-crypto-cipher";
description = "Symmetrical block and stream ciphers";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})