1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/security/opensc/default.nix

50 lines
1.2 KiB
Nix
Raw Normal View History

2015-03-03 22:27:19 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, zlib, readline, openssl
2015-05-02 01:47:52 +01:00
, libiconv, pcsclite, libassuan, libXt
2015-03-03 22:27:19 +00:00
, docbook_xsl, libxslt, docbook_xml_dtd_412
2013-12-02 11:37:24 +00:00
}:
stdenv.mkDerivation rec {
2015-03-03 22:27:19 +00:00
name = "opensc-${version}";
2015-06-19 06:59:38 +01:00
version = "0.15.0";
2013-12-02 11:37:24 +00:00
2015-03-03 22:27:19 +00:00
src = fetchFromGitHub {
owner = "OpenSC";
repo = "OpenSC";
rev = version;
2015-06-19 06:59:38 +01:00
sha256 = "16y3ryx606nry2li05hm88bllrragdj3sfl3yh7pf71777n4lsk4";
2013-12-02 11:37:24 +00:00
};
2015-03-03 22:27:19 +00:00
buildInputs = [
2015-05-02 01:47:52 +01:00
autoreconfHook pkgconfig zlib readline openssl pcsclite libassuan
libXt libxslt libiconv docbook_xml_dtd_412
2013-12-02 11:37:24 +00:00
];
configureFlags = [
2015-03-03 22:27:19 +00:00
"--enable-zlib"
"--enable-readline"
2013-12-02 11:37:24 +00:00
"--enable-openssl"
"--enable-pcsc"
"--enable-sm"
2015-03-03 22:27:19 +00:00
"--enable-man"
"--enable-doc"
"--localstatedir=/var"
"--sysconfdir=/etc"
2013-12-02 11:37:24 +00:00
"--with-xsl-stylesheetsdir=${docbook_xsl}/xml/xsl/docbook"
2015-03-03 22:52:02 +00:00
"--with-pcsc-provider=${pcsclite}/lib/libpcsclite.so"
2013-12-02 11:37:24 +00:00
];
2015-06-19 06:59:38 +01:00
installFlags = [
"sysconfdir=$(out)/etc"
2015-06-19 06:59:38 +01:00
];
2015-03-03 22:27:19 +00:00
meta = with stdenv.lib; {
2013-12-02 11:37:24 +00:00
description = "Set of libraries and utilities to access smart cards";
2015-03-03 22:27:19 +00:00
homepage = https://github.com/OpenSC/OpenSC/wiki;
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ viric wkennington ];
platforms = platforms.all;
2013-12-02 11:37:24 +00:00
};
}