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

19 lines
551 B
Nix
Raw Normal View History

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 {
name = "libyubikey-1.12";
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";
2014-10-07 22:57:38 +02:00
sha256 = "1f0plzmr1gwry4rfgq9q70v6qwqny009hac289ad5m6sj7vqflxr";
2014-01-25 03:13:34 +01:00
};
2014-10-25 01:33:36 +02:00
meta = with stdenv.lib; {
2014-01-25 03:13:34 +01:00
homepage = "http://opensource.yubico.com/yubico-c/";
description = "C library for manipulating Yubico YubiKey One-Time Passwords (OTPs)";
2014-10-25 01:33:36 +02:00
license = licenses.bsd2;
maintainers = with maintainers; [ calrama wkennington ];
platforms = platforms.unix;
2014-01-25 03:13:34 +01:00
};
}