nixpkgs/pkgs/tools/security/oath-toolkit/default.nix
Lluís Batlle i Rossell 6281042def Adding oath-toolkit and xmlsec
I added xmlsec to make it work with oath-toolkit (to build one extra tool
there, that I don't need), but I couldn't make it work together.
2013-03-31 00:08:17 +01:00

19 lines
489 B
Nix

{ stdenv, fetchurl, pam }:
stdenv.mkDerivation rec {
name = "oath-toolkit-2.0.2";
src = fetchurl {
url = "http://download.savannah.gnu.org/releases/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;
};
}