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

log-base: init at 0.12.0.0

parent 00c7c1e6
No related merge requests found
......@@ -354,6 +354,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "lifted-async" "0.10.2.1"
, callHackage "lifted-base" "0.2.3.12"
, callHackage "linear" "1.21.10"
, callHackage "log-base" "0.12.0.0"
, callCabal2nix
"log-effectful"
"https://github.com/haskell-effectful/log-effectful/"
......
......@@ -445,6 +445,8 @@ final: prev: with pkgs.haskell.lib; {
linear = prev.callPackage (./pkgs/linear.nix) { };
log-base = prev.callPackage (./pkgs/log-base.nix) { };
log-effectful = prev.callPackage (./pkgs/log-effectful.nix) { };
lpeg = prev.callPackage (./pkgs/lpeg.nix) { };
......
{ mkDerivation
, aeson
, aeson-pretty
, base
, bytestring
, deepseq
, exceptions
, lib
, mmorph
, monad-control
, mtl
, semigroups
, stm
, text
, time
, transformers-base
, unliftio-core
, unordered-containers
}:
mkDerivation {
pname = "log-base";
version = "0.12.0.0";
sha256 = "4f6735d4daeec234b32480cea9bddbc5952fdeba73f2ee88c06698eb2136c47c";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
aeson-pretty
base
bytestring
deepseq
exceptions
mmorph
monad-control
mtl
semigroups
stm
text
time
transformers-base
unliftio-core
unordered-containers
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/scrive/log";
description = "Structured logging solution (base package)";
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