nixpkgs/pkgs/development/libraries/libyubikey/default.nix

19 lines
541 B
Nix
Raw Normal View History

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; {
homepage = http://opensource.yubico.com/yubico-c/;
description = "C library for manipulating Yubico YubiKey One-Time Passwords (OTPs)";
2014-10-24 23:33:36 +00:00
license = licenses.bsd2;
2018-03-10 23:46:41 +00:00
maintainers = with maintainers; [ wkennington ];
2014-10-24 23:33:36 +00:00
platforms = platforms.unix;
2014-01-25 02:13:34 +00:00
};
}