Skip to content
Snippets Groups Projects
Commit 9fb3ab01 authored by Max Tomago's avatar Max Tomago Committed by Daniel Firth
Browse files

time-locale-compat: init at 0.1.1.5

parent 489d0b63
Branches
No related merge requests found
......@@ -270,6 +270,7 @@ let otherLibraries =
, callIoSim "strict-stm" "strict-stm"
, H.callHackage "testing-type-modifiers" "0.1.0.1"
, H.callHackage "th-desugar" "1.14"
, H.callHackage "time-locale-compat" "0.1.1.5"
, H.callHackage "time-units" "1.0.0"
, H.callHackage "transformers-except" "0.1.2"
, callTypedProtocols "typed-protocols-cborg" "typed-protocols-cborg"
......
......@@ -241,6 +241,8 @@ final: prev: with pkgs.haskell.lib; {
th-desugar = final.callPackage (./pkgs/th-desugar.nix) { };
time-locale-compat = final.callPackage (./pkgs/time-locale-compat.nix) { };
time-units = final.callPackage (./pkgs/time-units.nix) { };
transformers-except = final.callPackage (./pkgs/transformers-except.nix) { };
......
{ mkDerivation, base, lib, old-locale, time }:
mkDerivation {
pname = "time-locale-compat";
version = "0.1.1.5";
sha256 = "07ff1566de7d851423a843b2de385442319348c621d4f779b3d365ce91ac502c";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base old-locale time ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/khibino/haskell-time-locale-compat";
description = "Compatibile module for time-format locale";
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