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

cabal.mkDerivation (self : {
  pname = "parsec";
  version = "3.1.0";
  sha256 = "962d39944bae18b0fea60961c77513f455f95c0f67ae4b10ab15484a27b6fb98";
  propagatedBuildInputs = [mtl];
  meta = {
    license = "BSD";
    description = "Monadic parser combinators";
    maintainer = [self.stdenv.lib.maintainers.andres];
  };
})