biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / s5 / default.nix
blob85aca4e60dc6f1a1eba3928b8b2639e8f3a5e50d
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "s5";
5   version = "0.1.15";
7   src = fetchFromGitHub {
8     owner = "mvisonneau";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-QQMnzDRWdW0awwNx2vqtzrOW9Ua7EmJ9YFznQoK33J0=";
12   };
14   vendorHash = "sha256-axcZ4XzgsPVU9at/g3WS8Hv92P2hmZRb+tUfw+h9iH0=";
16   subPackages = [ "cmd/${pname}" ];
18   ldflags = [
19     "-X main.version=v${version}"
20   ];
22   doCheck = true;
24   meta = with lib; {
25     description = "cipher/decipher text within a file";
26     mainProgram = "s5";
27     homepage = "https://github.com/mvisonneau/s5";
28     license = licenses.asl20;
29     platforms = platforms.unix ++ platforms.darwin;
30     maintainers = with maintainers; [ mvisonneau ];
31   };