Merge pull request #321752 from r-ryantm/auto-update/sshesame

sshesame: 0.0.27 -> 0.0.35
This commit is contained in:
Weijia Wang
2024-07-02 23:21:19 +02:00
committed by GitHub
+5 -4
View File
@@ -1,25 +1,26 @@
{ lib
, buildGoModule
, fetchFromGitHub
, stdenv
, nix-update-script
}:
buildGoModule rec {
pname = "sshesame";
version = "0.0.27";
version = "0.0.35";
src = fetchFromGitHub {
owner = "jaksi";
repo = "sshesame";
rev = "v${version}";
hash = "sha256-pDLCOyjvbHM8Cw1AIt7+qTbCmH0tGSmwaTBz5pQ05bc=";
hash = "sha256-D+vygu+Zx/p/UmqOXqx/4zGv6mtCUKTeU5HdBhxdbN4=";
};
vendorHash = "sha256-iaINGWpj2gHfwsIOEp5PwlFBohXX591+/FBGyu656qI=";
vendorHash = "sha256-WX3rgv9xz3lisYSjf7xvx4oukDSuxE1yqLl6Sz/iDYc=";
ldflags = [ "-s" "-w" ];
hardeningEnable = [ "pie" ];
hardeningEnable = lib.optionals (!stdenv.isDarwin) [ "pie" ];
passthru.updateScript = nix-update-script { };