nixpkgs/pkgs/tools/security/keycard-cli/default.nix

32 lines
735 B
Nix
Raw Normal View History

2019-10-08 15:34:36 +00:00
{ lib, buildGoPackage, fetchFromGitHub, pkgconfig, pcsclite }:
buildGoPackage rec {
pname = "keycard-cli";
2020-06-15 08:15:12 +00:00
version = "0.4.0";
2019-10-08 15:34:36 +00:00
goPackagePath = "github.com/status-im/keycard-cli";
subPackages = [ "." ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ pcsclite ];
src = fetchFromGitHub {
owner = "status-im";
repo = pname;
rev = version;
2020-06-15 08:15:12 +00:00
sha256 = "0917vl5lw8wgvyn5l8q6xa8bqh342fibaa38syr8hmz8b09qkh38";
2019-10-08 15:34:36 +00:00
};
2019-10-08 15:47:23 +00:00
buildFlagsArray = [
"-ldflags="
"-X main.version=${version}"
];
2019-10-08 15:34:36 +00:00
meta = with lib; {
description = "A command line tool and shell to manage keycards";
homepage = "https://keycard.status.im";
license = licenses.mpl20;
maintainers = [ maintainers.zimbatm ];
};
}