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

35 lines
988 B
Nix
Raw Normal View History

2017-12-01 12:25:25 +00:00
{ stdenv, fetchFromGitHub, fetchpatch
, 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
stdenv.mkDerivation rec {
2017-12-01 12:25:25 +00:00
version = "3.12.10";
2016-04-26 16:08:16 +01:00
name = "qesteidutil-${version}";
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}";
# We require the remove breakpad stuff
rev = "efdfe4c5521f68f206569e71e292a664bb9f46aa";
sha256 = "0zly83sdqsf9lxnfw4ir2a9vmmfba181rhsrz61ga2zzpm2wf0f0";
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;
maintainers = [ maintainers.jagajaga ];
};
}