nixpkgs/pkgs/tools/security/s5/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

33 lines
742 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "s5";
version = "0.1.12";
src = fetchFromGitHub {
owner = "mvisonneau";
repo = pname;
rev = "v${version}";
hash = "sha256-lTbTD5t80+R9hQeytNE2/Cs8dofdiYEP3zkc084mdAA=";
};
vendorHash = "sha256-TrCIUeY0B+BsWNaUkDTEgrEaWfJKnID2mafj3ink+i8=";
subPackages = [ "cmd/${pname}" ];
ldflags = [
"-X main.version=v${version}"
];
doCheck = true;
meta = with lib; {
description = "cipher/decipher text within a file";
mainProgram = "s5";
homepage = "https://github.com/mvisonneau/s5";
license = licenses.asl20;
platforms = platforms.unix ++ platforms.darwin;
maintainers = with maintainers; [ mvisonneau ];
};
}