fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / tr / trdl-client / package.nix
blobc64ac876a92af0355a9144dabf929b9885e8303c
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5   testers,
6   trdl-client,
7 }:
9 buildGoModule rec {
10   pname = "trdl-client";
11   version = "0.7.0";
13   src = fetchFromGitHub {
14     owner = "werf";
15     repo = "trdl";
16     rev = "v${version}";
17     hash = "sha256-umeoiEq+Cp/cKpiNxCnMDghubm3LPFPJA18ChuYmIVo=";
18   };
20   sourceRoot = "${src.name}/client";
22   vendorHash = "sha256-f7FPeR+us3WvwqzcSQLbkKv905CCIAAm+HNV2FFF8OY=";
24   subPackages = [ "cmd/trdl" ];
26   CGO_ENABLED = 0;
28   ldflags = [
29     "-s"
30     "-w"
31     "-X github.com/werf/trdl/client/pkg/trdl.Version=${src.rev}"
32   ];
34   tags = [
35     "dfrunmount"
36     "dfssh"
37   ];
39   # There are no tests for cmd/trdl.
40   doCheck = false;
42   passthru.tests.version = testers.testVersion {
43     package = trdl-client;
44     command = "trdl version";
45     version = "v${version}";
46   };
48   meta = with lib; {
49     description = ''
50       The universal solution for delivering your software updates securely from
51       a trusted The Update Framework (TUF) repository
52     '';
53     longDescription = ''
54       trdl is an Open Source solution providing a secure channel for delivering
55       updates from the Git repository to the end user.
57       The project team releases new versions of the software and switches them
58       in the release channels. Git acts as the single source of truth while
59       Vault is used as a tool to verify operations as well as populate and
60       maintain the TUF repository.
62       The user selects a release channel, continuously receives the latest
63       software version from the TUF repository, and uses it.
64     '';
65     homepage = "https://trdl.dev";
66     changelog = "https://github.com/werf/trdl/releases/tag/${src.rev}";
67     license = licenses.asl20;
68     maintainers = with maintainers; [ azahi ];
69     mainProgram = "trdl";
70   };