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.
This commit is contained in:
Lluís Batlle i Rossell
2013-03-31 00:08:17 +01:00
parent 2ba0d9d3ae
commit 6281042def
3 changed files with 46 additions and 0 deletions
@@ -0,0 +1,18 @@
{ 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;
};
}