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