This commit is contained in:
2023-02-21 11:58:39 -05:00
parent 1a78024e09
commit 439a7df52d
3 changed files with 43 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
{ lib, stdenv }:
let
script = pkgs.writeShellScriptBin "helloWorld" builtins.readFile ./wsl-ssh-agent-forward.sh;
name = "wsl-ssh-agent-forward"
in stdenv.mkDerivation rec {
pname = name;
# Add the derivation to the PATH
buildInputs = [ script ];
}