forked from mirrors/nixpkgs
libu2f-server: 0.0.0 -> 1.0.1
This commit is contained in:
parent
4977dd6771
commit
5afaef6213
|
@ -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/;
|
||||||
|
|
Loading…
Reference in a new issue