Skip to content

Commit

Permalink
Merge pull request NixOS#271881 from Kranzes/sshx-pkgs
Browse files Browse the repository at this point in the history
sshx: update, split component and add web to sshx-server
  • Loading branch information
Kranzes authored Dec 4, 2023
2 parents 4679e36 + 54557f8 commit 216b111
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 53 deletions.
53 changes: 0 additions & 53 deletions pkgs/by-name/ss/sshx/package.nix

This file was deleted.

79 changes: 79 additions & 0 deletions pkgs/tools/misc/sshx/default.nix
Original file line number Diff line number Diff line change
@@ -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"
'';
};
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 216b111

Please sign in to comment.