about summary refs log tree commit diff
path: root/pkgs/development/libraries/libyubikey/default.nix
blob: 25c2117b059d76eb2852e0755e2f6bb696c98f2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchurl}:

stdenv.mkDerivation rec
{
  version = "1.11";
  name = "libyubikey-${version}";

  src = fetchurl
  {
    url = "http://opensource.yubico.com/yubico-c/releases/${name}.tar.gz";
    sha256 = "19pm4rqsnm9r0n5j26bqkxa1jpimdavzcvg5g7p416vkjhxc6lw9";
  };

  meta =
  {
    homepage = "http://opensource.yubico.com/yubico-c/";
    description = "C library for manipulating Yubico YubiKey One-Time Passwords (OTPs)";
    license = "bsd";
    maintainers = [ stdenv.lib.maintainers.calrama ];
  };
}