506032b24c
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/eid-mw/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/sis599r39a2g7kvnv1d09l6sy6kn45l0-eid-mw-4.4.3/bin/eid-viewer had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/sis599r39a2g7kvnv1d09l6sy6kn45l0-eid-mw-4.4.3/bin/.eid-viewer-wrapped had a zero exit code or showed the expected version - /nix/store/sis599r39a2g7kvnv1d09l6sy6kn45l0-eid-mw-4.4.3/bin/beid-update-nssdb passed the binary check. - /nix/store/sis599r39a2g7kvnv1d09l6sy6kn45l0-eid-mw-4.4.3/bin/eid-nssdb passed the binary check. - 2 of 4 passed binary check by having a zero exit code. - 0 of 4 passed binary check by having the new version present in output. - found 4.4.3 with grep in /nix/store/sis599r39a2g7kvnv1d09l6sy6kn45l0-eid-mw-4.4.3 - directory tree listing: https://gist.github.com/3bca8b9d321e62009daf1d388923ec47 - du listing: https://gist.github.com/64220a7b5b960cbd2ec3bb5f61c93a29
80 lines
2.6 KiB
Nix
80 lines
2.6 KiB
Nix
{ stdenv, fetchFromGitHub
|
|
, autoreconfHook, pkgconfig
|
|
, gtk3, nssTools, pcsclite
|
|
, libxml2, libproxy
|
|
, openssl, curl
|
|
, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "eid-mw-${version}";
|
|
version = "4.4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "1h90iz4l85drchpkmhlsvg7f9abhw6890fdr9x5n5ir3kxikwcdm";
|
|
rev = "v${version}";
|
|
repo = "eid-mw";
|
|
owner = "Fedict";
|
|
};
|
|
|
|
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" ];
|
|
|
|
postInstall = ''
|
|
install -D ${./eid-nssdb.in} $out/bin/eid-nssdb
|
|
substituteInPlace $out/bin/eid-nssdb \
|
|
--replace "modutil" "${nssTools}/bin/modutil"
|
|
|
|
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.
|
|
|
|
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 ];
|
|
};
|
|
}
|