python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / pkcs11helper / default.nix
blob66031309220223bf2617015a1d75302da3eb633a
1 { lib, stdenv, fetchFromGitHub, pkg-config, openssl, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "pkcs11-helper";
5   version = "1.29.0";
7   src = fetchFromGitHub {
8     owner = "OpenSC";
9     repo = "pkcs11-helper";
10     rev = "${pname}-${version}";
11     sha256 = "sha256-HPaPmsCJ81NaS7mgRGbR7KFG6AM3s6HXdWKdfREhcLc=";
12   };
14   nativeBuildInputs = [ autoreconfHook pkg-config ];
15   buildInputs = [ openssl ];
17   enableParallelBuilding = true;
19   meta = with lib; {
20     homepage = "https://github.com/OpenSC/pkcs11-helper";
21     license = with licenses; [ bsd3 gpl2Only ];
22     description = "Library that simplifies the interaction with PKCS#11 providers";
23     platforms = platforms.unix;
24   };