1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/pkgs/development/libraries/libykneomgr/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

27 lines
724 B
Nix

{ lib, stdenv, fetchurl, pkg-config, pcsclite, libzip, help2man }:
stdenv.mkDerivation rec {
pname = "libykneomgr";
version = "0.1.8";
src = fetchurl {
url = "https://developers.yubico.com/libykneomgr/Releases/${pname}-${version}.tar.gz";
sha256 = "12gqblz400kr11m1fdr1vvwr85lgy5v55zy0cf782whpk8lyyj97";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ pcsclite libzip help2man ];
configureFlags = [
"--with-backend=pcsc"
];
meta = with lib; {
description = "C library to interact with the CCID-part of the Yubikey NEO";
homepage = "https://developers.yubico.com/libykneomgr";
license = licenses.bsd3;
mainProgram = "ykneomgr";
platforms = platforms.unix;
};
}