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

fast-logger: init at 3.1.1

parent fe9964af
Branches
Tags
No related merge requests found
...@@ -258,6 +258,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -258,6 +258,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "extra" "1.7.12" , callHackage "extra" "1.7.12"
, callHackage "expiring-cache-map" "0.0.6.1" , callHackage "expiring-cache-map" "0.0.6.1"
, callHackage "fail" "4.9.0.0" , callHackage "fail" "4.9.0.0"
, callHackage "fast-logger" "3.1.1"
, callHackage "fcf-containers" "0.7.1" , callHackage "fcf-containers" "0.7.1"
, callHackage "file-embed" "0.0.15.0" , callHackage "file-embed" "0.0.15.0"
, callHackage "filemanip" "0.3.6.3" , callHackage "filemanip" "0.3.6.3"
......
...@@ -329,6 +329,8 @@ self: with pkgs.haskell.lib; { ...@@ -329,6 +329,8 @@ self: with pkgs.haskell.lib; {
fail = self.callPackage (./pkgs/fail.nix) { }; fail = self.callPackage (./pkgs/fail.nix) { };
fast-logger = self.callPackage (./pkgs/fast-logger.nix) { };
fcf-containers = self.callPackage (./pkgs/fcf-containers.nix) { }; fcf-containers = self.callPackage (./pkgs/fcf-containers.nix) { };
file-embed = self.callPackage (./pkgs/file-embed.nix) { }; file-embed = self.callPackage (./pkgs/file-embed.nix) { };
......
{ mkDerivation
, array
, auto-update
, base
, bytestring
, directory
, easy-file
, filepath
, hspec
, hspec-discover
, lib
, text
, unix-compat
, unix-time
}:
mkDerivation {
pname = "fast-logger";
version = "3.1.1";
sha256 = "435f6e7e0771b9b525550c292a941ab5726b233e7d91fdeca707e3cdb531a8e7";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
array
auto-update
base
bytestring
directory
easy-file
filepath
text
unix-compat
unix-time
];
testHaskellDepends = [ base bytestring directory hspec ];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/kazu-yamamoto/logger";
description = "A fast logging system";
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