summary refs log tree commit diff
path: root/pkgs/tools/admin/tlsclient/default.nix
blob: 2cf0f0d548c59e7d617a2ca39b9b553249cac4e8 (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
{ lib
, stdenv
, fetchFromSourcehut
, pkg-config
, openssl
, gitUpdater
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "tlsclient";
  version = "1.6.4";

  src = fetchFromSourcehut {
    owner = "~moody";
    repo = "tlsclient";
    rev = "v${finalAttrs.version}";
    hash = "sha256-36fhY9kO6tPUuRkpk3Jv9oBRYX/SnmdZg0Rzt/A6MQE=";
  };

  strictDeps = true;
  enableParallelBuilding = true;
  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ openssl ];

  buildFlags = [ "tlsclient" ];
  installFlags = [ "PREFIX=$(out)" ];
  installTargets = "tlsclient.install";

  passthru.updateScript = gitUpdater {
    rev-prefix = "v";
  };

  meta = with lib; {
    description = "tlsclient command line utility";
    longDescription = "unix port of 9front's tlsclient(1) and rcpu(1)";
    homepage = "https://git.sr.ht/~moody/tlsclient";
    license = licenses.mit;
    maintainers = with maintainers; [ moody ];
    mainProgram = "tlsclient";
    platforms = platforms.all;
  };
})