depot/third_party/nixpkgs/pkgs/tools/security/s5/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

32 lines
742 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "s5";
version = "0.1.15";
src = fetchFromGitHub {
owner = "mvisonneau";
repo = pname;
rev = "v${version}";
hash = "sha256-QQMnzDRWdW0awwNx2vqtzrOW9Ua7EmJ9YFznQoK33J0=";
};
vendorHash = "sha256-axcZ4XzgsPVU9at/g3WS8Hv92P2hmZRb+tUfw+h9iH0=";
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 ];
};
}