mirror of
https://github.com/sstent/vmimages.git
synced 2025-12-06 06:01:51 +00:00
12 lines
267 B
Nix
12 lines
267 B
Nix
{ pkgs, 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 ];
|
|
|
|
}
|