Newer
Older
{ mkDerivation, base, bytestring, lib, tasty, tasty-quickcheck
, tasty-smallcheck
}:
mkDerivation {
pname = "bytestring-lexing";
version = "0.5.0.11";
sha256 = "5c0289536063327210cd3f20333ab9a06587b2eaf4b20108f32d98a8fef41b9b";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base bytestring tasty tasty-quickcheck tasty-smallcheck
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://wrengr.org/software/hackage.html";
description = "Efficiently parse and produce common integral and fractional numbers";
license = lib.licenses.bsd3;
broken = false;
}