repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
metrics
/
influx.nix
blob
d4b94bc231e7048bb1944291789cd10c9ec10c59
1
{
2
buildDunePackage,
3
metrics,
4
duration,
5
fmt,
6
lwt,
7
}:
8
9
buildDunePackage rec {
10
pname = "metrics-influx";
11
inherit (metrics) version src;
12
13
duneVersion = "3";
14
15
propagatedBuildInputs = [
16
duration
17
fmt
18
lwt
19
metrics
20
];
21
22
meta = metrics.meta // {
23
description = "Influx reporter for the Metrics library";
24
};
25
}