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

parsec: init at 3.1.15.1

parent a4693ded
No related merge requests found
......@@ -492,6 +492,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "pandoc-types" "1.22.2.1"
, callHackage "pandoc" "2.19.2"
, callHackage "parallel" "3.2.2.0"
, callHackage "parsec" "3.1.15.1"
, callHackage "parsers" "0.12.11"
, callHackage "parser-combinators" "1.3.0"
, callHackage "password-types" "1.0.0.0"
......
......@@ -725,6 +725,8 @@ self: with pkgs.haskell.lib; {
parallel = self.callPackage (./pkgs/parallel.nix) { };
parsec = self.callPackage (./pkgs/parsec.nix) { };
parser-combinators = self.callPackage (./pkgs/parser-combinators.nix) { };
parsers = self.callPackage (./pkgs/parsers.nix) { };
......
{ mkDerivation
, base
, bytestring
, lib
, mtl
, tasty
, tasty-hunit
, text
}:
mkDerivation {
pname = "parsec";
version = "3.1.15.1";
sha256 = "abe4901531185505d4360e633e8d79ccc90325a0bac7f666eecad30f7f7f98dd";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring mtl text ];
testHaskellDepends = [ base mtl tasty tasty-hunit ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell/parsec";
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