hss: 1.0.1 -> 1.1.0 (#530545)

This commit is contained in:
Yohann Boniface 2026-07-05 21:03:55 +00:00 committed by GitHub
commit 65832159a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 4 deletions

View file

@ -16487,6 +16487,12 @@
githubId = 30468956;
name = "Lukas Heiligenbrunner";
};
lukas-sgx = {
email = "lukas.soigneux@epitech.eu";
github = "lukas-sgx";
githubId = 68616614;
name = "Lukas Soigneux";
};
lukaslihotzki = {
email = "lukas@lihotzki.de";
github = "lukaslihotzki";

View file

@ -17,12 +17,12 @@ buildRubyGem rec {
name = "hss-${version}";
inherit ruby;
gemName = "hss";
version = "1.0.1";
source.sha256 = "0hdfpxxqsh6gisn8mm0knsl1aig9fir0h2x9sirk3gr36qbz5xa4";
version = "1.1.0";
source.sha256 = "0zfgsiqy2c99c6hlg69bzj83kn6clkw1jmz6n6xh9ap4hz17blgm";
postInstall = ''
substituteInPlace $GEM_HOME/gems/${gemName}-${version}/bin/hss \
--replace \
--replace-fail \
"'ssh'" \
"'${openssh}/bin/ssh'"
'';
@ -33,7 +33,10 @@ buildRubyGem rec {
'';
homepage = "https://github.com/akerl/hss";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nixy ];
maintainers = with lib.maintainers; [
nixy
lukas-sgx
];
platforms = lib.platforms.unix;
mainProgram = "hss";
};