mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
29 lines
757 B
Nix
29 lines
757 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "smimesign";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "github";
|
|
repo = "smimesign";
|
|
rev = "v${version}";
|
|
hash = "sha256-W9Hj/+snx+X6l95Gt9d8DiLnBPV9npKydc/zMN9G0vQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-wLqYUICL+gdvRCLNrA0ZNcFI4oV3Oik762q7xF115Lw=";
|
|
|
|
ldflags = [ "-s" "-w" "-X main.versionString=v${version}" ];
|
|
|
|
# Fails in sandbox
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "An S/MIME signing utility for macOS and Windows that is compatible with Git";
|
|
homepage = "https://github.com/github/smimesign";
|
|
license = licenses.mit;
|
|
platforms = platforms.darwin ++ platforms.windows;
|
|
maintainers = [ maintainers.enorris ];
|
|
};
|
|
}
|