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.
30 lines
1.0 KiB
Nix
30 lines
1.0 KiB
Nix
{ stdenv, fetchurl, fetchpatch, pkg-config, json_c, openssl, check, file, help2man, which, gengetopt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libu2f-server-1.1.0";
|
|
src = fetchurl {
|
|
url = "https://developers.yubico.com/libu2f-server/Releases/${name}.tar.xz";
|
|
sha256 = "0xx296nmmqa57w0v5p2kasl5zr1ms2gh6qi4lhv6xvzbmjp3rkcd";
|
|
};
|
|
|
|
patches = [
|
|
# remove after updating to next release
|
|
(fetchpatch {
|
|
name = "json-c-0.14-support.patch";
|
|
url = "https://github.com/Yubico/libu2f-server/commit/f7c4983b31909299c47bf9b2627c84b6bfe225de.patch";
|
|
sha256 = "10q66w3paii1yhfdmjskpip078fk9p3sjllbqx1yx71qbjki55b0";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ json_c openssl check file help2man which gengetopt ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://developers.yubico.com/libu2f-server/";
|
|
description = "A C library that implements the server-side of the U2F protocol";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ philandstuff ];
|
|
};
|
|
}
|