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

cabal.mkDerivation (self: {
  pname = "attoparsec-conduit";
  version = "1.0.0";
  sha256 = "1aw071qcwhxwpd6azhgaiia97rhj50rms4pysbc19iihmdih3ib8";
  buildDepends = [ attoparsec conduit text transformers ];
  testDepends = [ attoparsec conduit hspec resourcet text ];
  meta = {
    homepage = "http://github.com/snoyberg/conduit";
    description = "Consume attoparsec parsers via conduit";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})