2014-10-24 23:33:36 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2014-01-25 02:13:34 +00:00
|
|
|
|
2014-10-24 23:33:36 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-09 23:57:32 +00:00
|
|
|
name = "libyubikey-1.13";
|
2014-01-25 02:13:34 +00:00
|
|
|
|
2014-10-24 23:33:36 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://developers.yubico.com/yubico-c/Releases/${name}.tar.gz";
|
2015-03-09 23:57:32 +00:00
|
|
|
sha256 = "009l3k2zyn06dbrlja2d4p2vfnzjhlcqxi88v02mlrnb17mx1v84";
|
2014-01-25 02:13:34 +00:00
|
|
|
};
|
|
|
|
|
2014-10-24 23:33:36 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-01-25 02:13:34 +00:00
|
|
|
homepage = "http://opensource.yubico.com/yubico-c/";
|
2014-01-29 17:05:05 +00:00
|
|
|
description = "C library for manipulating Yubico YubiKey One-Time Passwords (OTPs)";
|
2014-10-24 23:33:36 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ calrama wkennington ];
|
|
|
|
platforms = platforms.unix;
|
2014-01-25 02:13:34 +00:00
|
|
|
};
|
|
|
|
}
|