about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/uu-parsinglib/default.nix
blob: 069abb51d60170ee272338b2467cac2e95c53772 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal, ListLike, time }:

cabal.mkDerivation (self: {
  pname = "uu-parsinglib";
  version = "2.7.1.1";
  sha256 = "1qn3impl64cvbzyvhc73yxyibgak4dkgl1vkbrzxrxb770kb5r4p";
  buildDepends = [ ListLike time ];
  meta = {
    homepage = "http://www.cs.uu.nl/wiki/bin/view/HUT/ParserCombinators";
    description = "Fast, online, error-correcting, monadic, applicative, merging, permuting, idiomatic parser combinators.";
    license = self.stdenv.lib.licenses.mit;
  };
})