2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchFromGitHub
|
2017-12-01 12:25:25 +00:00
|
|
|
, cmake, ccid, qttools, qttranslations
|
2018-02-25 02:23:58 +00:00
|
|
|
, pkgconfig, pcsclite, hicolor-icon-theme
|
2017-12-01 12:25:25 +00:00
|
|
|
}:
|
2016-04-26 16:08:16 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2018-11-08 11:17:12 +00:00
|
|
|
version = "2018-08-21";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "qesteidutil";
|
2016-04-26 16:08:16 +01:00
|
|
|
|
2017-12-01 12:25:25 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "open-eid";
|
|
|
|
repo = "qesteidutil";
|
|
|
|
# TODO: Switch back to this after next release.
|
|
|
|
#rev = "v${version}";
|
2018-11-08 11:17:12 +00:00
|
|
|
rev = "3bb65ef345aaa0d589b37a5d0d6f5772e95b0cd7";
|
|
|
|
sha256 = "13xsw5gh4svp9a5nxcqv72mymivr7w1cyjbv2l6yf96m45bsd9x4";
|
2017-12-01 12:25:25 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
2016-04-26 16:08:16 +01:00
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ cmake ccid qttools pcsclite qttranslations
|
2018-02-25 02:23:58 +00:00
|
|
|
hicolor-icon-theme
|
2016-04-26 16:08:16 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "UI application for managing smart card PIN/PUK codes and certificates";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.id.ee/;
|
2016-04-26 16:08:16 +01:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
platforms = platforms.linux;
|
2018-11-08 11:17:12 +00:00
|
|
|
maintainers = with maintainers; [ jagajaga domenkozar ];
|
2016-04-26 16:08:16 +01:00
|
|
|
};
|
|
|
|
}
|