summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/base64-conduit/default.nix
blob: 3a2d044de64d79b678c345ae2df354241203f62e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, base64Bytestring, conduit, hspec, QuickCheck, transformers
}:

cabal.mkDerivation (self: {
  pname = "base64-conduit";
  version = "1.0.0";
  sha256 = "10wjgdixk5da48jpm2i91vy3ckdqpbpgba6hzn7ak6d3qac22m9q";
  buildDepends = [ base64Bytestring conduit ];
  testDepends = [
    base64Bytestring conduit hspec QuickCheck transformers
  ];
  meta = {
    homepage = "http://github.com/snoyberg/conduit";
    description = "Base64-encode and decode streams of bytes";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})