nixpkgs/pkgs/servers/trickster/trickster.nix
Paul Meyer b2f0e7301e treewide: remove buildFlags use in buildGoModule
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-04-15 07:39:04 +02:00

48 lines
1.2 KiB
Nix

{ 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;
};
}