Unverified Commit cb7f0597 authored by r-vdp's avatar r-vdp
Browse files

iroh-ssh: fix eval

parent 18344eb7
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  rustPlatform,
  fetchFromGitHub,
  autoAddDriverRunpath,
  installShellFiles,
  writableTmpDirAsHomeHook,
  versionCheckHook,
@@ -24,7 +22,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
  cargoHash = "sha256-KZu4HA5E9R4sdBW5cdhyA5E2bo2YN2TPSKDlJuzDGnU=";

  nativeBuildInputs = [
    autoAddDriverRunpath
    installShellFiles
  ];

@@ -41,12 +38,10 @@ rustPlatform.buildRustPackage (finalAttrs: {
  };

  meta = {
    description = "ssh without ip";
    description = "SSH to any machine without IP";
    homepage = "https://github.com/rustonbsd/iroh-ssh";
    maintainers = "LukeDSchenk";
    maintainers = with lib.maintainers; [ luke ];
    license = lib.licenses.mit;
    mainProgram = "iroh-ssh";
  };
})