1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/haskell/cryptocipher/default.nix
2013-09-06 23:35:09 +02:00

21 lines
633 B
Nix

{ cabal, cipherAes, cipherBlowfish, cipherCamellia, cipherDes
, cipherRc4, cryptoCipherTypes
}:
cabal.mkDerivation (self: {
pname = "cryptocipher";
version = "0.6.0";
sha256 = "1jgwn1j7h5rhg872ghmz54phxn7nlwmk83qv1cbnbww1l2ay8gz5";
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;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})