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

tagsoup: init at 0.14.8

parent ffbada3e
No related merge requests found
......@@ -686,6 +686,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "system-filepath" "0.4.14"
, callHackage "tabular" "0.2.2.8"
, callHackage "tagged" "0.8.6.1"
, callHackage "tagsoup" "0.14.8"
, callHackage "tar" "0.5.1.1"
, callCabal2nix
"tasty"
......
......@@ -1047,6 +1047,8 @@ self: with pkgs.haskell.lib; {
tagged = self.callPackage (./pkgs/tagged.nix) { };
tagsoup = self.callPackage (./pkgs/tagsoup.nix) { };
tar = self.callPackage (./pkgs/tar.nix) { };
tasty = self.callPackage (./pkgs/tasty.nix) { };
......
{ mkDerivation
, base
, bytestring
, containers
, deepseq
, directory
, lib
, process
, QuickCheck
, text
, time
}:
mkDerivation {
pname = "tagsoup";
version = "0.14.8";
sha256 = "ba7e5500d853d29f0675b90655b7fdd032a4a7eee82a56e7ee3ef9949fe93ad5";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring containers text ];
testHaskellDepends = [
base
bytestring
deepseq
directory
process
QuickCheck
time
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/ndmitchell/tagsoup#readme";
description = "Parsing and extracting information from (possibly malformed) HTML/XML documents";
license = lib.licenses.bsd3;
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