summary refs log tree commit diff
path: root/pkgs/by-name/tp/tpm2-totp/package.nix
blob: 766c6e138af64cb670e60b1c6c0cc88f4b81e160 (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
{ lib
, stdenv
, fetchFromGitHub
, tpm2-tss
, autoreconfHook
, autoconf-archive
, pkg-config
, qrencode
}:

stdenv.mkDerivation rec {
  pname = "tpm2-totp";
  version = "0.3.0";

  src = fetchFromGitHub {
    owner = "tpm2-software";
    repo = "tpm2-totp";
    rev = "v${version}";
    hash = "sha256-aeWhI2GQcWa0xAqlmHfcbCMg78UqcD6eanLlEVNVnRM=";
  };

  preConfigure = ''
    echo '0.3.0' > VERSION
  '';

  nativeBuildInputs = [
    autoreconfHook
    autoconf-archive
    pkg-config
  ];

  buildInputs = [
    tpm2-tss
    qrencode
  ];

  meta = with lib; {
    description = "Attest the trustworthiness of a device against a human using time-based one-time passwords";
    homepage = "https://github.com/tpm2-software/tpm2-totp";
    changelog = "https://github.com/tpm2-software/tpm2-totp/blob/${src.rev}/CHANGELOG.md";
    license = licenses.bsd3;
    mainProgram = "tpm2-totp";
    platforms = platforms.all;
    maintainers = with maintainers; [ raitobezarius ];
  };
}