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

time-locale-compat: init at 0.1.1.5

parent e4bea725
Branches
No related merge requests found
......@@ -850,6 +850,7 @@ let packages =
"https://github.com/haskell-effectful/time-effectful"
"e212239b685e1ecf7ee95dd1e944cc563351907f"
(None Text)
, time-locale-compat = H.callHackage "time-locale-compat" "0.1.1.5"
, time-manager = H.callHackage "time-manager" "0.0.0"
, tls-session-manager = H.callHackage "tls-session-manager" "0.0.4"
, tls = H.callHackage "tls" "1.6.0"
......
......@@ -1369,6 +1369,8 @@ self: with pkgs.haskell.lib; {
time-effectful = self.callPackage (./pkgs/time-effectful.nix) { };
time-locale-compat = self.callPackage (./pkgs/time-locale-compat.nix) { };
time-manager = self.callPackage (./pkgs/time-manager.nix) { };
timeit = self.callPackage (./pkgs/timeit.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