about summary refs log tree commit diff
path: root/pkgs/servers/trickster/trickster.nix
blob: 2215990654539b110e6889dd5b0f1c716db17a84 (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
46
47
{ lib
, buildGoModule
, fetchFromGitHub
, go
}:

buildGoModule rec {
  pname = "trickster";
  version = "1.1.5";
  rev = "4595bd6a1ae1165ef497251ad85c646dadc8a925";

  src = fetchFromGitHub {
    owner = "trickstercache";
    repo = "trickster";
    rev = "v${version}";
    sha256 = "sha256-BRD8IF3s9RaDorVtXRvbKLVVVXWiEQTQyKBR9jFo1eM=";
  };

  vendorHash = null;

  subPackages = [ "cmd/trickster" ];

  ldflags = with lib;
    [ "-extldflags '-static'" "-s" "-w" ] ++
    (mapAttrsToList (n: v: "-X main.application${n}=${v}") {
      BuildTime = "1970-01-01T00:00:00+0000";
      GitCommitID = rev;
      GoVersion = "go${go.version}}";
      GoArch = "${go.GOARCH}";
    });

  # Tests are broken.
  doCheck = false;

  meta = with lib; {
    description = "Reverse proxy cache and time series dashboard accelerator";
    mainProgram = "trickster";
    longDescription = ''
      Trickster is a fully-featured HTTP Reverse Proxy Cache for HTTP
      applications like static file servers and web APIs.
    '';
    homepage = "https://trickstercache.org/";
    license = licenses.asl20;
    maintainers = with maintainers; [ _1000101 ];
    platforms = platforms.linux;
  };
}