packages feed

cabal2nix-2.8.2: test/golden-test-cases/incremental-parser.nix.golden

{ mkDerivation, base, bytestring, checkers, criterion, deepseq
, fetchurl, monoid-subclasses, QuickCheck, tasty, tasty-quickcheck
, text
}:
mkDerivation {
  pname = "incremental-parser";
  version = "0.2.5.2";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  libraryHaskellDepends = [ base monoid-subclasses ];
  testHaskellDepends = [
    base checkers monoid-subclasses QuickCheck tasty tasty-quickcheck
  ];
  benchmarkHaskellDepends = [
    base bytestring criterion deepseq monoid-subclasses text
  ];
  homepage = "https://github.com/blamario/incremental-parser";
  description = "Generic parser library capable of providing partial results from partial input";
  license = "GPL";
}