keycard-cli: init at 0.0.12
This commit is contained in:
parent
bffcb980e3
commit
6886db123c
26
pkgs/tools/security/keycard-cli/default.nix
Normal file
26
pkgs/tools/security/keycard-cli/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, buildGoPackage, fetchFromGitHub, pkgconfig, pcsclite }:
|
||||||
|
|
||||||
|
buildGoPackage rec {
|
||||||
|
pname = "keycard-cli";
|
||||||
|
version = "0.0.12";
|
||||||
|
|
||||||
|
goPackagePath = "github.com/status-im/keycard-cli";
|
||||||
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
buildInputs = [ pcsclite ];
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "status-im";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1jnbaq57i6i9bad1hcvd28mxfqq6v8rv806c6l74vlb79ff4v1wb";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A command line tool and shell to manage keycards";
|
||||||
|
homepage = "https://keycard.status.im";
|
||||||
|
license = licenses.mpl20;
|
||||||
|
maintainers = [ maintainers.zimbatm ];
|
||||||
|
};
|
||||||
|
}
|
@ -25037,4 +25037,6 @@ in
|
|||||||
|
|
||||||
coz = callPackage ../development/tools/analysis/coz {};
|
coz = callPackage ../development/tools/analysis/coz {};
|
||||||
|
|
||||||
|
keycard-cli = callPackage ../tools/security/keycard-cli {};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user