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

pcre-heavy: init at 1.0.0.3

parent 3ece4d97
Branches
Tags
No related merge requests found
......@@ -296,6 +296,7 @@ let otherLibraries =
, H.callHackage "persistent-sqlite" "2.13.1.0"
, H.callHackage "persistent-test" "2.13.1.3"
, H.callHackage "pipes-safe" "2.3.4"
, H.callHackage "pcre-heavy" "1.0.0.3"
, H.callGit
"prettyprinter-configurable"
"https://github.com/milloni/plutus"
......
......@@ -267,6 +267,8 @@ final: prev: with pkgs.haskell.lib; {
partial-order = final.callPackage (./pkgs/partial-order.nix) { };
pcre-heavy = final.callPackage (./pkgs/pcre-heavy.nix) { };
persistent-postgresql = final.callPackage (./pkgs/persistent-postgresql.nix) { };
persistent-qq = final.callPackage (./pkgs/persistent-qq.nix) { };
......
{ mkDerivation
, Glob
, base
, base-compat
, bytestring
, doctest
, lib
, pcre-light
, semigroups
, string-conversions
, template-haskell
}:
mkDerivation {
pname = "pcre-heavy";
version = "1.0.0.3";
sha256 = "3ef115e2fc81d453bdd2fdec57d6880e798f9f7a185010d21b420a22f0c9980f";
revision = "1";
editedCabalFile = "0wa517agsib2q658bfsb9fdm12yz3pqzj204v9jf9rz4fm4y8q81";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
base-compat
bytestring
pcre-light
semigroups
string-conversions
template-haskell
];
testHaskellDepends = [ base doctest Glob ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://codeberg.org/valpackett/pcre-heavy";
description = "A regexp (regex) library on top of pcre-light you can actually use";
license = lib.licenses.publicDomain;
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