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

cabal.mkDerivation (self : {
  pname = "attoparsec-text";
  version = "0.8.5.1";
  sha256 = "1in0ziqjf2hvlv6yay2b5xkm35j1szzwdfapn5mpflv64qi33i0z";
  propagatedBuildInputs = [ attoparsec text ];
  meta = {
    homepage = "http://patch-tag.com/r/felipe/attoparsec-text/home";
    description = "Fast combinator parsing for texts";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.stdenv.lib.platforms.haskellPlatforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})