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

cabal.mkDerivation (self: {
  pname = "attoparsec";
  version = "0.9.1.2";
  sha256 = "0h9j4gn376k6j3v9l6pk7a4vxabkwk80043x6xlyxsh8p77jgj3v";
  buildDepends = [ deepseq ];
  meta = {
    homepage = "https://bitbucket.org/bos/attoparsec";
    description = "Fast combinator parsing for bytestrings";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})