aboutsummaryrefslogtreecommitdiffstats
path: root/nix/parser-combinators.nix
blob: d1baab95fed65102fae4d1ce0848da840a434b36 (plain)
1
2
3
4
5
6
7
8
9
10
{ mkDerivation, base, stdenv }:
mkDerivation {
  pname = "parser-combinators";
  version = "1.1.0";
  sha256 = "ac7642972b18a47c575d2bcd0b2f6c34f33ca2ed3adb28034420d09ced823e91";
  libraryHaskellDepends = [ base ];
  homepage = "https://github.com/mrkkrp/parser-combinators";
  description = "Lightweight package providing commonly useful parser combinators";
  license = stdenv.lib.licenses.bsd3;
}