mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
s5: init at 0.1.12
Signed-off-by: Maxime VISONNEAU <maxime.visonneau@gmail.com>
This commit is contained in:
parent
5416f2ecd5
commit
d06ff9a1e1
30
pkgs/tools/security/s5/default.nix
Normal file
30
pkgs/tools/security/s5/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "s5";
|
||||
version = "0.1.12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mvisonneau";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "003l4v7d671rvw7q32fxhxv3qazw6v8v9ch7hmyy9lvwkc7x6dlm";
|
||||
};
|
||||
|
||||
subPackages = [ "cmd/${pname}" ];
|
||||
|
||||
ldflags = [
|
||||
"-X main.version=v${version}"
|
||||
];
|
||||
|
||||
vendorSha256 = "TrCIUeY0B+BsWNaUkDTEgrEaWfJKnID2mafj3ink+i8=";
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "cipher/decipher text within a file";
|
||||
homepage = "https://github.com/mvisonneau/s5";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix ++ platforms.darwin;
|
||||
maintainers = with maintainers; [ mvisonneau ];
|
||||
};
|
||||
}
|
@ -9615,6 +9615,8 @@ with pkgs;
|
||||
|
||||
s4cmd = callPackage ../tools/networking/s4cmd { };
|
||||
|
||||
s5 = callPackage ../tools/security/s5 { };
|
||||
|
||||
s5cmd = callPackage ../tools/networking/s5cmd { };
|
||||
|
||||
s3gof3r = callPackage ../tools/networking/s3gof3r { };
|
||||
|
Loading…
Reference in New Issue
Block a user