mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
29 lines
754 B
Nix
29 lines
754 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 = "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 ];
|
|
};
|
|
}
|