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

utility-ht: init at 0.0.16

parent cb8a8e69
No related merge requests found
......@@ -738,6 +738,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "unordered-containers" "0.2.19.1"
, callHackage "uri-encode" "1.5.0.7"
, callHackage "utf8-string" "1.0.2"
, callHackage "utility-ht" "0.0.16"
, callHackage "uuid-types" "1.0.5"
, callHackage "uuid" "1.3.15"
, callHackage "validity" "0.12.0.1"
......
......@@ -1111,6 +1111,8 @@ self: with pkgs.haskell.lib; {
utf8-string = self.callPackage (./pkgs/utf8-string.nix) { };
utility-ht = self.callPackage (./pkgs/utility-ht.nix) { };
uuid = self.callPackage (./pkgs/uuid.nix) { };
uuid-types = self.callPackage (./pkgs/uuid-types.nix) { };
......
{ mkDerivation
, base
, doctest-exitcode-stdio
, doctest-lib
, lib
, QuickCheck
}:
mkDerivation {
pname = "utility-ht";
version = "0.0.16";
sha256 = "bce53223bb77643222331efec5d69a656c0fa2d11be6563e27bc4808a1abbb81";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
testHaskellDepends = [
base
doctest-exitcode-stdio
doctest-lib
QuickCheck
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Various small helper functions for Lists, Maybes, Tuples, Functions";
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