3
0
Fork 0
forked from mirrors/nixpkgs

eid-mw: 4.1.4 -> 4.1.5

This commit is contained in:
Tobias Geerinckx-Rice 2015-08-14 01:27:53 +02:00
parent eb910bce5b
commit a913ad89c1

View file

@ -1,12 +1,12 @@
{ stdenv, fetchFromGitHub, autoreconfHook, gtk2, nssTools, pcsclite
, pkgconfig }:
let version = "4.1.4"; in
let version = "4.1.5"; in
stdenv.mkDerivation {
name = "eid-mw-${version}";
src = fetchFromGitHub {
sha256 = "0v0p0kdjscvf4bn14dyny399k1bfsz8v7n8v16lv0q0xs5nwqnky";
sha256 = "0m2awjfj2vs3aahy1ygrxi7mx12bhr1a621kiiszzai38crpgwbj";
rev = "v${version}";
repo = "eid-mw";
owner = "Fedict";
@ -28,7 +28,7 @@ stdenv.mkDerivation {
substituteInPlace $out/bin/eid-nssdb \
--replace "modutil" "${nssTools}/bin/modutil"
# Only provides a useless "about-eid-mw.desktop" that segfaults:
# Only provides a useless "about-eid-mw.desktop" that segfaults anyway:
rm -rf $out/share/applications $out/bin/about-eid-mw
'';
@ -55,6 +55,6 @@ stdenv.mkDerivation {
and remove all ~/.pki and/or /etc/pki directories no longer needed.
'';
maintainers = with maintainers; [ nckx ];
platforms = with platforms; linux;
platforms = platforms.linux;
};
}