libnitrokey: init at 3.8

This commit is contained in:
Nicolas Benes 2023-03-25 14:35:27 +01:00
parent b944d5859e
commit 71d37d8535
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, hidapi
, libusb1
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libnitrokey";
version = "3.8";
src = fetchFromGitHub {
owner = "Nitrokey";
repo = "libnitrokey";
rev = "v${finalAttrs.version}";
hash = "sha256-9ZMR1g04gNzslax6NpD6KykfUfjpKFIizaMMn06iJa0=";
};
nativeBuildInputs = [
cmake
pkg-config
];
cmakeFlags = [
"-DADD_GIT_INFO=OFF"
"-DCMAKE_INSTALL_UDEVRULESDIR=etc/udev/rules.d"
];
buildInputs = [ libusb1 ];
propagatedBuildInputs = [ hidapi ];
meta = with lib; {
description = "Communicate with Nitrokey devices in a clean and easy manner";
homepage = "https://github.com/Nitrokey/libnitrokey";
license = licenses.lgpl3;
maintainers = with maintainers; [ panicgh raitobezarius ];
};
})

View file

@ -21594,6 +21594,8 @@ with pkgs;
libnice = callPackage ../development/libraries/libnice { };
libnitrokey = callPackage ../development/libraries/libnitrokey { };
libnsl = callPackage ../development/libraries/libnsl { };
liboping = callPackage ../development/libraries/liboping { };