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

cabal.mkDerivation (self: {
  pname = "parsec";
  version = "2.1.0.1";
  sha256 = "2d85e5b5c8b2b1f341037ce67e1db7fa47b31c083136796cfef9e5b945c656df";
  buildDepends = [ Cabal ];
  meta = {
    homepage = "http://www.cs.uu.nl/~daan/parsec.html";
    description = "Monadic parser combinators";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})