Skip to content
Snippets Groups Projects
Commit 3caa5fd4 authored by Daniel Firth's avatar Daniel Firth
Browse files

megaparsec: init at 9.2.2

parent bceed9cf
Branches
Tags
No related merge requests found
...@@ -342,6 +342,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -342,6 +342,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "lucid-svg" "0.7.1" , callHackage "lucid-svg" "0.7.1"
, callHackage "lucid" "2.11.1" , callHackage "lucid" "2.11.1"
, callHackage "net-mqtt" "0.8.2.2" , callHackage "net-mqtt" "0.8.2.2"
, callHackage "megaparsec" "9.2.2"
, callHackage "memory" "0.18.0" , callHackage "memory" "0.18.0"
, callHackage "mockery" "0.3.5" , callHackage "mockery" "0.3.5"
, callHackage "microstache" "1.0.2.2" , callHackage "microstache" "1.0.2.2"
......
...@@ -413,6 +413,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -413,6 +413,8 @@ final: prev: with pkgs.haskell.lib; {
lucid-svg = prev.callPackage (./pkgs/lucid-svg.nix) { }; lucid-svg = prev.callPackage (./pkgs/lucid-svg.nix) { };
megaparsec = prev.callPackage (./pkgs/megaparsec.nix) { };
memory = prev.callPackage (./pkgs/memory.nix) { }; memory = prev.callPackage (./pkgs/memory.nix) { };
microstache = prev.callPackage (./pkgs/microstache.nix) { }; microstache = prev.callPackage (./pkgs/microstache.nix) { };
......
{ mkDerivation
, base
, bytestring
, case-insensitive
, containers
, criterion
, deepseq
, lib
, mtl
, parser-combinators
, scientific
, text
, transformers
, weigh
}:
mkDerivation {
pname = "megaparsec";
version = "9.2.2";
sha256 = "a48b03e55c0b9efcc88ce4236186fb6eee3acb64336987dd9c98daf4d96aa234";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
case-insensitive
containers
deepseq
mtl
parser-combinators
scientific
text
transformers
];
benchmarkHaskellDepends = [
base
bytestring
containers
criterion
deepseq
text
weigh
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/mrkkrp/megaparsec";
description = "Monadic parser combinators";
license = lib.licenses.bsd2;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment