summary refs log tree commit diff
path: root/pkgs/tools/security/oath-toolkit/default.nix
blob: 80ab866e1f3f504b24f6e651803d3a9233b5e6d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, pam }:

stdenv.mkDerivation rec {
  name = "oath-toolkit-2.0.2";

  src = fetchurl {
    url = "mirror://savannah/oath-toolkit/${name}.tar.gz";
    sha256 = "0i2rf5j83kb8h3sd9lsm0a46zq805kzagvccc4rk7879lg1fnl99";
  };

  buildInputs = [ pam ];

  meta = {
    homepage = http://www.nongnu.org/oath-toolkit/;
    description = "Components for building one-time password authentication systems";
    platforms = stdenv.lib.platforms.linux;
  };
}