depot/third_party/nixpkgs/pkgs/tools/security/certinfo/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

30 lines
862 B
Nix

{ stdenv, lib, buildGoModule, fetchFromGitHub, libX11, darwin }:
buildGoModule rec {
pname = "certinfo";
version = "1.0.23";
src = fetchFromGitHub {
owner = "pete911";
repo = "certinfo";
rev = "v${version}";
sha256 = "sha256-el7qL2d8z50S+0vyy8zH1W1uNix9PXmDGS5y8P9fIVA=";
};
# clipboard functionality not working on Darwin
doCheck = !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64);
buildInputs = [ ]
++ lib.optionals stdenv.hostPlatform.isLinux [ libX11 ]
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ];
vendorHash = null;
meta = with lib; {
description = "Print x509 certificate info";
mainProgram = "certinfo";
homepage = "https://github.com/pete911/certinfo";
license = licenses.mit;
maintainers = with maintainers; [ jakuzure ];
};
}