nixpkgs/pkgs/development/libraries/libp11/default.nix

26 lines
694 B
Nix
Raw Normal View History

2017-03-08 16:31:34 +03:00
{ stdenv, fetchFromGitHub, autoreconfHook, libtool, openssl, pkgconfig }:
stdenv.mkDerivation rec {
2017-03-12 21:27:55 +03:00
name = "libp11-${version}";
2017-12-05 06:06:12 +03:00
version = "0.4.7";
2017-03-08 16:31:34 +03:00
src = fetchFromGitHub {
owner = "OpenSC";
repo = "libp11";
rev = name;
2017-12-05 06:06:12 +03:00
sha256 = "0n1i0pxj6l0vdq8gpdwfp5p9qd7wkymg0lpy6a17ix8hpqsljlhr";
};
2017-03-08 16:31:34 +03:00
2017-03-12 21:27:55 +03:00
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
2017-03-08 16:31:34 +03:00
nativeBuildInputs = [ autoreconfHook pkgconfig libtool ];
buildInputs = [ openssl ];
2017-03-12 21:27:55 +03:00
meta = with stdenv.lib; {
homepage = https://github.com/OpenSC/libp11;
2017-03-18 21:41:23 +03:00
license = licenses.lgpl21Plus;
description = "Small layer on top of PKCS#11 API to make PKCS#11 implementations easier";
2017-03-12 21:27:55 +03:00
platforms = platforms.all;
};
}