From cb7f0597e7f5665d5d6e2ede2344b5eb3d5903e4 Mon Sep 17 00:00:00 2001 From: r-vdp Date: Sun, 8 Mar 2026 16:47:56 +0100 Subject: [PATCH] iroh-ssh: fix eval --- pkgs/by-name/ir/iroh-ssh/package.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/ir/iroh-ssh/package.nix b/pkgs/by-name/ir/iroh-ssh/package.nix index 7d904499ff74..e812a167c610 100644 --- a/pkgs/by-name/ir/iroh-ssh/package.nix +++ b/pkgs/by-name/ir/iroh-ssh/package.nix @@ -1,9 +1,7 @@ { 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"; }; }) - -