9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
33 lines
1007 B
Nix
33 lines
1007 B
Nix
{ stdenv, fetchurl, fetchpatch, pkg-config, json_c, hidapi }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libu2f-host";
|
|
version = "1.1.10";
|
|
|
|
src = fetchurl {
|
|
url = "https://developers.yubico.com/${pname}/Releases/${pname}-${version}.tar.xz";
|
|
sha256 = "0vrivl1dwql6nfi48z6dy56fwy2z13d7abgahgrs2mcmqng7hra2";
|
|
};
|
|
|
|
patches = [
|
|
# remove after updating to next release
|
|
(fetchpatch {
|
|
name = "json-c-0.14-support.patch";
|
|
url = "https://github.com/Yubico/libu2f-host/commit/840f01135d2892f45e71b9e90405de587991bd03.patch";
|
|
sha256 = "0xplx394ppsbsb4h4l8b9m4dv9shbl0zyck3y26vbm9i1g981ki7";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ json_c hidapi ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://developers.yubico.com/libu2f-host";
|
|
description = "A C library and command-line tool that implements the host-side of the U2F protocol";
|
|
license = with licenses; [ gpl3Plus lgpl21Plus ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|