3
0
Fork 0
forked from mirrors/nixpkgs

libu2f-server: 0.0.0 -> 1.0.1

This commit is contained in:
William A. Kennington III 2015-09-22 23:25:45 -07:00
parent 4977dd6771
commit 5afaef6213

View file

@ -1,14 +1,15 @@
{ stdenv, fetchurl, pkgconfig, json_c, hidapi, openssl, check }: { stdenv, fetchurl, pkgconfig, json_c, openssl, check }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libu2f-server-0.0.0"; name = "libu2f-server-1.0.1";
src = fetchurl { src = fetchurl {
url = "https://developers.yubico.com/libu2f-server/Releases/libu2f-server-0.0.0.tar.xz"; url = "https://developers.yubico.com/libu2f-server/Releases/${name}.tar.xz";
sha256 = "1vdl3qavzfpi6p6h48zw17md9wykfzpay5c4l1c08id46m560wp0"; sha256 = "0vhzixz1s629qv9dpdj6b7fxfyxnr5j2vx2cq9q6v790a68ga656";
}; };
buildInputs = [ pkgconfig json_c hidapi openssl check ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ json_c openssl check ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://developers.yubico.com/libu2f-server/; homepage = https://developers.yubico.com/libu2f-server/;