nixpkgs/pkgs/development/libraries/pkcs11helper/default.nix
R. RyanTM 231bcd3555 pkcs11helper: 1.22 -> 1.23 (#41530)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/pkcs11-helper/versions.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 1.23 with grep in /nix/store/njd3rr6rvfss4xm4slpj7pxcp7ydlkxx-pkcs11-helper-1.23
- directory tree listing: https://gist.github.com/dfd004f45e4a3e63bf0656538040eb38
- du listing: https://gist.github.com/197b03678f9126503098e42ad217a12b
2018-06-06 08:36:30 +02:00

26 lines
689 B
Nix

{ stdenv, fetchFromGitHub, pkgconfig, openssl, autoreconfHook }:
stdenv.mkDerivation rec {
name = "pkcs11-helper-${version}";
version = "1.23";
src = fetchFromGitHub {
owner = "OpenSC";
repo = "pkcs11-helper";
rev = "${name}";
sha256 = "1m3fp3v6c903cs36bvvg0h65p1sdamsmzy13ww0zyvplcycarz0n";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ openssl ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = https://github.com/OpenSC/pkcs11-helper;
license = with licenses; [ bsd3 gpl2 ];
description = "Library that simplifies the interaction with PKCS#11 providers";
platforms = platforms.unix;
};
}