Merge pull request #271881 from Kranzes/sshx-pkgs

sshx: update, split component and add web to sshx-server
This commit is contained in:
Ilan Joselevich 2023-12-04 19:07:04 +02:00 committed by GitHub
commit 216b111fb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 83 additions and 53 deletions

View file

@ -1,53 +0,0 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, protobuf
, zstd
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "sshx";
version = "unstable-2023-11-04";
src = fetchFromGitHub {
owner = "ekzhang";
repo = "sshx";
rev = "91c82d46cde4d1ffa0ae34e2a9a49911e2e53baa";
hash = "sha256-X9c7ZKIpWI5EsbkgB8FJWlwQQXHAcPjLKp2Bvo0fo/w=";
};
cargoHash = "sha256-mOK5gpPuUKzN5xnJs5nFyslxr9IIHtiCylMP53ObDqg=";
nativeBuildInputs = [
pkg-config
protobuf
];
buildInputs = [
zstd
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
env = {
ZSTD_SYS_USE_PKG_CONFIG = true;
};
outputs = [ "out" "server" ];
postInstall = ''
moveToOutput 'bin/sshx' "$out"
moveToOutput 'bin/sshx-server' "$server"
'';
meta = with lib; {
description = "Fast, collaborative live terminal sharing over the web";
homepage = "https://github.com/ekzhang/sshx";
license = licenses.mit;
maintainers = with maintainers; [ pinpox ];
mainProgram = "sshx";
};
}

View file

@ -0,0 +1,79 @@
{ lib
, callPackage
, rustPlatform
, fetchFromGitHub
, protobuf
, darwin
, stdenv
, buildNpmPackage
}:
let
version = "unstable-2023-11-23";
src = fetchFromGitHub {
owner = "ekzhang";
repo = "sshx";
rev = "2677f7e1fa3b369132cc7f27f6028a04b92ba5cf";
hash = "sha256-9fo8hNUzJr4gse0J2tw7j+alqE82+y8McADzTkxryWk=";
};
mkSshxPackage = { pname, cargoHash, ... }@args:
rustPlatform.buildRustPackage (rec {
inherit
pname
version
src
cargoHash;
nativeBuildInputs = [ protobuf ];
buildInputs = lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
cargoBuildFlags = [ "--package" pname ];
cargoTestFlags = cargoBuildFlags;
meta = {
description = "Fast, collaborative live terminal sharing over the web";
homepage = "https://github.com/ekzhang/sshx";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pinpox kranzes ];
mainProgram = pname;
};
} // args);
in
{
sshx = mkSshxPackage {
pname = "sshx";
cargoHash = "sha256-dA5Aen/qANW8si75pj/RsBknvOo3KDyU5UISAmmcfRE=";
};
sshx-server = mkSshxPackage rec {
pname = "sshx-server";
cargoHash = "sha256-1GRWCMXsOzqvORgtwfuywV4wLyX3r4nURhM3Dl5V9Ss=";
postPatch = ''
substituteInPlace crates/sshx-server/src/web.rs \
--replace 'ServeDir::new("build")' 'ServeDir::new("${passthru.web.outPath}")' \
--replace 'ServeFile::new("build/spa.html")' 'ServeFile::new("${passthru.web.outPath}/spa.html")'
'';
passthru.web = buildNpmPackage {
pname = "sshx-web";
inherit
version
src;
postPatch = ''
substituteInPlace vite.config.ts \
--replace 'execSync("git rev-parse --short HEAD").toString().trim()' '"${src.rev}"'
'';
npmDepsHash = "sha256-bKePCxo6+n0EG+4tbbMimPedJ0Hu1O8yZsgspmhobOs=";
installPhase = ''
mkdir -p "$out"
cp -r build/* "$out"
'';
};
};
}

View file

@ -13526,6 +13526,10 @@ with pkgs;
sshuttle = callPackage ../tools/security/sshuttle { };
inherit (callPackages ../tools/misc/sshx { })
sshx
sshx-server;
ssldump = callPackage ../tools/networking/ssldump { };
sslsplit = callPackage ../tools/networking/sslsplit { };