nixpkgs/pkgs/tools/security/qesteidutil/default.nix

33 lines
938 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub
2017-12-01 12:25:25 +00:00
, cmake, ccid, qttools, qttranslations
, 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";
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
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake ccid qttools pcsclite qttranslations
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";
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
};
}