Skip to content

Commit

Permalink
eid-mw: 4.1.9 -> 4.4.1 (#40237)
Browse files Browse the repository at this point in the history
* 
* Added bfortz to maintainers
  • Loading branch information
bfortz authored and xeji committed May 29, 2018
1 parent 2ee4841 commit fdb5ba4
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 61 deletions.
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Expand Up @@ -558,6 +558,11 @@
github = "bergey";
name = "Daniel Bergey";
};
bfortz = {
email = "bernard.fortz@gmail.com";
github = "bfortz";
name = "Bernard Fortz";
};
bhipple = {
email = "bhipple@protonmail.com";
github = "bhipple";
Expand Down
51 changes: 34 additions & 17 deletions pkgs/tools/security/eid-mw/default.nix
@@ -1,62 +1,79 @@
{ stdenv, fetchFromGitHub
, autoreconfHook, pkgconfig
, gtk3, nssTools, pcsclite }:
, gtk3, nssTools, pcsclite
, libxml2, libproxy
, openssl, curl
, makeWrapper }:

stdenv.mkDerivation rec {
name = "eid-mw-${version}";
version = "4.1.19";
version = "4.4.1";

src = fetchFromGitHub {
sha256 = "191c74kxfrfb894v8y4vi2iygyffjy9jjq5fj7cnnddgwai5n3c5";
sha256 = "0an7xgj5rzl75kq6qfrmm886v639hhlh7c9yfs8iihc47wghpma8";
rev = "v${version}";
repo = "eid-mw";
owner = "Fedict";
};

nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ gtk3 pcsclite ];
nativeBuildInputs = [ autoreconfHook pkgconfig makeWrapper ];
buildInputs = [ gtk3 pcsclite libxml2 libproxy curl openssl ];
preConfigure = ''
mkdir openssl
ln -s ${openssl.out}/lib openssl
ln -s ${openssl.bin}/bin openssl
ln -s ${openssl.dev}/include openssl
export SSL_PREFIX=$(realpath openssl)
'';

postPatch = ''
sed 's@m4_esyscmd_s(.*,@[${version}],@' -i configure.ac
'';

configureFlags = [ "--enable-dialogs=yes" ];

enableParallelBuilding = true;

doCheck = true;

postInstall = ''
install -D ${./eid-nssdb.in} $out/bin/eid-nssdb
substituteInPlace $out/bin/eid-nssdb \
--replace "modutil" "${nssTools}/bin/modutil"
# Only provides a useless "about-eid-mw.desktop" that segfaults anyway:
rm -r $out/share/applications $out/bin/about-eid-mw
rm $out/bin/about-eid-mw
wrapProgram $out/bin/eid-viewer --prefix XDG_DATA_DIRS : "$out/share/gsettings-schemas/$name"
'';

enableParallelBuilding = true;

doCheck = true;

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/;
license = licenses.lgpl3;
longDescription = ''
Allows user authentication and digital signatures with Belgian ID cards.
Also requires a running pcscd service and compatible card reader.
Also requires a running pcscd service and compatible card reader.
eid-viewer is also installed.
**TO FIX:**
The procedure below did not work for me, I had to install the .so directly in firefox as instructed at
https://eid.belgium.be/en/log-eid#7507
and specify
/run/current-system/sw/lib/libbeidpkcs11.so
as the path to the module.
This package only installs the libraries. To use eIDs in Firefox or
Chromium, the eID Belgium add-on must be installed.
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.
'';
platforms = platforms.linux;
maintainers = with maintainers; [ bfortz ];
};
}
42 changes: 0 additions & 42 deletions pkgs/tools/security/eid-viewer/default.nix

This file was deleted.

2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -2060,8 +2060,6 @@ with pkgs;

eid-mw = callPackage ../tools/security/eid-mw { };

eid-viewer = callPackage ../tools/security/eid-viewer { };

mcrcon = callPackage ../tools/networking/mcrcon {};

uudeview = callPackage ../tools/misc/uudeview { };
Expand Down

0 comments on commit fdb5ba4

Please sign in to comment.