mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, zlib, readline, openssl
|
|
, libiconv, pcsclite, libassuan, libXt
|
|
, docbook_xsl, libxslt, docbook_xml_dtd_412
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "opensc-${version}";
|
|
version = "0.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenSC";
|
|
repo = "OpenSC";
|
|
rev = version;
|
|
sha256 = "02q3rndcfd7lga1ph0xcl556rgigzpp9bpwqyn42rfbx8lll7gzv";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i 's,$(DESTDIR),$(out),g' etc/Makefile.am
|
|
'';
|
|
|
|
buildInputs = [
|
|
autoreconfHook pkgconfig zlib readline openssl pcsclite libassuan
|
|
libXt libxslt libiconv docbook_xml_dtd_412
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-zlib"
|
|
"--enable-readline"
|
|
"--enable-openssl"
|
|
"--enable-pcsc"
|
|
"--enable-sm"
|
|
"--enable-man"
|
|
"--enable-doc"
|
|
"--localstatedir=/var"
|
|
"--sysconfdir=/etc"
|
|
"--with-xsl-stylesheetsdir=${docbook_xsl}/xml/xsl/docbook"
|
|
"--with-pcsc-provider=${pcsclite}/lib/libpcsclite.so"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Set of libraries and utilities to access smart cards";
|
|
homepage = https://github.com/OpenSC/OpenSC/wiki;
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ viric wkennington ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|