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

hxt: init at 9.3.1.22

parent 7cc3f408
Branches
1 merge request!2add some plutus dependencies
......@@ -5,6 +5,10 @@ let packages =
{ cpphs = H.callHackage "cpphs" "1.20.9.1"
, formatting = H.callHackage "formatting" "7.2.0"
, haskell-src = H.callHackage "haskell-src" "1.0.4"
, hxt = H.callHackage "hxt" "9.3.1.22"
, hxt-charproperties = H.callHackage "hxt-charproperties" "9.5.0.0"
, hxt-regex-xmlschema = H.callHackage "hxt-regex-xmlschema" "9.2.0.7"
, hxt-unicode = H.callHackage "hxt-unicode" "9.0.2.4"
, polyparse = H.callHackage "polyparse" "1.13"
, polysemy = H.callHackage "polysemy" "1.9.1.0"
, quiet = H.callHackage "quiet" "0.2"
......
......@@ -10,6 +10,22 @@
, mapValue =
"2d896b58cf0f770cb302c87d2dfa69bee4a0695a99002a3c9562605abecca8c3"
}
, { mapKey = "hxt"
, mapValue =
"dae321e9369f296a7a32f0745485e70d3d59991da972ee110b8ff4e24ceed98b"
}
, { mapKey = "hxt-charproperties"
, mapValue =
"30d1724530dbd0d433606898bce1faa57716a3c4e7cb047e361eb9bbe4f69554"
}
, { mapKey = "hxt-regex-xmlschema"
, mapValue =
"82779beeeb8411c70f6edd7c7f8421ec08997b83fb7f38040ae283edf6be2401"
}
, { mapKey = "hxt-unicode"
, mapValue =
"0f704a54006d45142f4faf04c1f09ffbcb3c11931d0b14076b806a18e3146648"
}
, { mapKey = "polyparse"
, mapValue =
"2cac3d1ba9be7501de571a085512834798adc0d76aea9ba65bfa460fa5cf9e09"
......
......@@ -7,6 +7,14 @@ final: prev: with pkgs.haskell.lib; {
haskell-src = final.callPackage (./pkgs/haskell-src.nix) { };
hxt = final.callPackage (./pkgs/hxt.nix) { };
hxt-charproperties = final.callPackage (./pkgs/hxt-charproperties.nix) { };
hxt-regex-xmlschema = final.callPackage (./pkgs/hxt-regex-xmlschema.nix) { };
hxt-unicode = final.callPackage (./pkgs/hxt-unicode.nix) { };
polyparse = final.callPackage (./pkgs/polyparse.nix) { };
polysemy = final.callPackage (./pkgs/polysemy.nix) { };
......
{ mkDerivation, base, lib }:
mkDerivation {
pname = "hxt-charproperties";
version = "9.5.0.0";
sha256 = "28836949512a2aedb63b2a02e0b05a4f519dc3511cfd259804a6e9d59a44a94a";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/UweSchmidt/hxt";
description = "Character properties and classes for XML and Unicode";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, HUnit, base, bytestring, criterion, deepseq
, hxt-charproperties, lib, parsec, text
}:
mkDerivation {
pname = "hxt-regex-xmlschema";
version = "9.2.0.7";
sha256 = "b9b6bcfc7d8c5e9a0be87dc56b13a237a51ca2c19c6665a51378a9538b71d97a";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base bytestring hxt-charproperties parsec text
];
testHaskellDepends = [ base bytestring HUnit parsec text ];
benchmarkHaskellDepends = [
base bytestring criterion deepseq parsec text
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema";
description = "A regular expression library for W3C XML Schema regular expressions";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, hxt-charproperties, lib }:
mkDerivation {
pname = "hxt-unicode";
version = "9.0.2.4";
sha256 = "7b5823f3bd94b57022d9d84ab3555303653c5121eaaef2ee1fd4918f3c434466";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base hxt-charproperties ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/UweSchmidt/hxt";
description = "Unicode en-/decoding functions for utf8, iso-latin-* and other encodings";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, binary, bytestring, containers, deepseq
, directory, filepath, hxt-charproperties, hxt-regex-xmlschema
, hxt-unicode, lib, mtl, network-uri, parsec
}:
mkDerivation {
pname = "hxt";
version = "9.3.1.22";
sha256 = "ef602fe674225527750574dd555dbdf402ab77d054af75d41ca21b42dbb23ad9";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base binary bytestring containers deepseq directory filepath
hxt-charproperties hxt-regex-xmlschema hxt-unicode mtl network-uri
parsec
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/UweSchmidt/hxt";
description = "A collection of tools for processing XML with Haskell";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
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