2016-05-04 14:22:16 +01:00
|
|
|
{ stdenv, fetchFromGitHub
|
|
|
|
, autoreconfHook, pkgconfig
|
|
|
|
, gtk3, nssTools, pcsclite }:
|
2014-12-05 19:35:26 +00:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-26 17:19:57 +00:00
|
|
|
name = "eid-mw-${version}";
|
2018-05-05 14:26:44 +01:00
|
|
|
version = "4.3.7";
|
2014-12-05 19:35:26 +00:00
|
|
|
|
2015-03-26 17:19:57 +00:00
|
|
|
src = fetchFromGitHub {
|
2016-11-16 12:32:25 +00:00
|
|
|
sha256 = "191c74kxfrfb894v8y4vi2iygyffjy9jjq5fj7cnnddgwai5n3c5";
|
2015-03-26 17:19:57 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
repo = "eid-mw";
|
|
|
|
owner = "Fedict";
|
2014-12-05 19:35:26 +00:00
|
|
|
};
|
|
|
|
|
2015-06-17 18:36:06 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2016-05-04 14:22:16 +01:00
|
|
|
buildInputs = [ gtk3 pcsclite ];
|
2014-12-05 19:35:26 +00:00
|
|
|
|
2015-07-29 23:03:29 +01:00
|
|
|
postPatch = ''
|
|
|
|
sed 's@m4_esyscmd_s(.*,@[${version}],@' -i configure.ac
|
|
|
|
'';
|
|
|
|
|
2015-12-09 08:15:12 +00:00
|
|
|
configureFlags = [ "--enable-dialogs=yes" ];
|
|
|
|
|
2015-04-07 16:35:38 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-03-26 17:19:57 +00:00
|
|
|
doCheck = true;
|
2014-12-05 19:35:26 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
install -D ${./eid-nssdb.in} $out/bin/eid-nssdb
|
|
|
|
substituteInPlace $out/bin/eid-nssdb \
|
|
|
|
--replace "modutil" "${nssTools}/bin/modutil"
|
2015-06-04 18:29:41 +01:00
|
|
|
|
2015-08-14 00:27:53 +01:00
|
|
|
# Only provides a useless "about-eid-mw.desktop" that segfaults anyway:
|
2015-10-15 13:21:46 +01:00
|
|
|
rm -r $out/share/applications $out/bin/about-eid-mw
|
2014-12-05 19:35:26 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Belgian electronic identity card (eID) middleware";
|
|
|
|
homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.lgpl3;
|
2014-12-05 19:35:26 +00:00
|
|
|
longDescription = ''
|
|
|
|
Allows user authentication and digital signatures with Belgian ID cards.
|
|
|
|
Also requires a running pcscd service and compatible card reader.
|
|
|
|
|
|
|
|
This package only installs the libraries. To use eIDs in NSS-compatible
|
|
|
|
browsers like Chrom{e,ium} or Firefox, each user must first execute:
|
|
|
|
|
|
|
|
~$ eid-nssdb add
|
|
|
|
|
|
|
|
(Running the script once as root with the --system option enables eID
|
|
|
|
support for all users, but will *not* work when using Chrom{e,ium}!)
|
|
|
|
|
|
|
|
Before uninstalling this package, it is a very good idea to run
|
|
|
|
|
|
|
|
~$ eid-nssdb [--system] remove
|
|
|
|
|
|
|
|
and remove all ~/.pki and/or /etc/pki directories no longer needed.
|
|
|
|
'';
|
2015-08-14 00:27:53 +01:00
|
|
|
platforms = platforms.linux;
|
2018-05-05 14:26:44 +01:00
|
|
|
maintainers = with maintainers; [ bfortz ];
|
2014-12-05 19:35:26 +00:00
|
|
|
};
|
|
|
|
}
|