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

ekg-statsd: init at 0.2.5.0

parent 820d693c
No related merge requests found
......@@ -309,6 +309,7 @@ let packages =
"https://github.com/vshabanov/ekg-json"
"00ebe7211c981686e65730b7144fbf5350462608"
(None H.Subdir)
, ekg-statsd = H.callHackage "ekg-statsd" "0.2.5.0"
, emojis = H.callHackage "emojis" "0.1.2"
, enclosed-exceptions = H.callHackage "enclosed-exceptions" "1.0.3"
, entropy = H.callHackage "entropy" "0.4.1.10"
......
......@@ -453,6 +453,8 @@ self: with pkgs.haskell.lib; {
ekg-json = self.callPackage (./pkgs/ekg-json.nix) { };
ekg-statsd = self.callPackage (./pkgs/ekg-statsd.nix) { };
email-validate = self.callPackage (./pkgs/email-validate.nix) { };
emojis = self.callPackage (./pkgs/emojis.nix) { };
......
{ mkDerivation
, base
, bytestring
, ekg-core
, lib
, network
, text
, time
, unordered-containers
}:
mkDerivation {
pname = "ekg-statsd";
version = "0.2.5.0";
sha256 = "22f947644019f13db105aea665088673fbdcdf6a671e7ec1a72c6134bbd64f0b";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
ekg-core
network
text
time
unordered-containers
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/tibbe/ekg-statsd";
description = "Push metrics to statsd";
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