summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/pushgateway.nix
blob: 6a742796f30895a9845b14cbd5d9fc4df3de8e98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ stdenv, lib, go, buildGoPackage, go-bindata, fetchFromGitHub }:

buildGoPackage rec {
  name = "pushgateway-${version}";
  version = "0.3.0";
  rev = version;

  goPackagePath = "github.com/prometheus/pushgateway";

  src = fetchFromGitHub {
    inherit rev;
    owner = "prometheus";
    repo = "pushgateway";
    sha256 = "1bj0s4s3gbcnlp2z2yx7jf3jx14cdg2v4pr0yciai0g6jwwg63hd";
  };

  goDeps = ./pushgateway_deps.nix;

  buildInputs = [ go-bindata ];

  preBuild = ''
  (
    cd "go/src/$goPackagePath"
    go-bindata ./resources/
  )
  '';

  buildFlagsArray = ''
    -ldflags=
        -X main.buildVersion=${version}
        -X main.buildRev=${rev}
        -X main.buildBranch=master
        -X main.buildUser=nix@nixpkgs
        -X main.buildDate=20150101-00:00:00
        -X main.goVersion=${stdenv.lib.getVersion go}
  '';

  meta = with stdenv.lib; {
    description = "Allows ephemeral and batch jobs to expose metrics to Prometheus";
    homepage = https://github.com/prometheus/pushgateway;
    license = licenses.asl20;
    maintainers = with maintainers; [ benley ];
    platforms = platforms.unix;
  };
}