summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/crypto-conduit/default.nix
blob: 5882fe3c5bf8419e2e7fcb0800855789d373601e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, cereal, conduit, cryptoApi, transformers }:

cabal.mkDerivation (self: {
  pname = "crypto-conduit";
  version = "0.1.3.1";
  sha256 = "0b8n2njz2ccdb9gql79l96jgv1nlq4ls09d25a2yy9f69w7h1ww5";
  buildDepends = [ cereal conduit cryptoApi transformers ];
  meta = {
    homepage = "https://github.com/meteficha/crypto-conduit";
    description = "Conduit interface for cryptographic operations (from crypto-api)";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})