about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/crypto-cipher-types/default.nix
blob: 70e61054137f32bfb79117eadbe2f0e9eb24b5d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, byteable, securemem }:

cabal.mkDerivation (self: {
  pname = "crypto-cipher-types";
  version = "0.0.7";
  sha256 = "1zvlc88c4w4rhj1imx3w3j3f4b6im9sj78fgwwyzwmn14mn1y6l8";
  buildDepends = [ byteable securemem ];
  meta = {
    homepage = "http://github.com/vincenthz/hs-crypto-cipher";
    description = "Generic cryptography cipher types";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})