nixpkgs/pkgs/tools/security/opensc/default.nix

47 lines
1.2 KiB
Nix
Raw Normal View History

2015-03-03 22:27:19 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, zlib, readline, openssl
, libiconv, pcsclite, libassuan1, libXt
, 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}";
version = "0.14.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;
sha256 = "02q3rndcfd7lga1ph0xcl556rgigzpp9bpwqyn42rfbx8lll7gzv";
2013-12-02 11:37:24 +00:00
};
2015-03-03 22:27:19 +00:00
postPatch = ''
sed -i 's,$(DESTDIR),$(out),g' etc/Makefile.am
'';
buildInputs = [
autoreconfHook pkgconfig zlib readline openssl pcsclite libassuan1
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: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
};
}