diff --git a/packages/fc-scripts.nix b/packages/fc-scripts.nix index 0fb4926..f360471 100644 --- a/packages/fc-scripts.nix +++ b/packages/fc-scripts.nix @@ -20,7 +20,6 @@ let { pname, propagatedBuildInputs, - python ? python3, ... }@args: stdenvNoCC.mkDerivation (finalAttrs: { @@ -31,7 +30,7 @@ let inherit src version; # not passed via function args, but can be overridden later via overrideAttrs dontBuild = true; dontConfigure = true; - buildInputs = [ python ]; # the python interpreter utilised by patchShebangs + buildInputs = [ python3 ]; nativeBuildInputs = [ makeWrapper ]; installPhase = '' @@ -63,10 +62,10 @@ in mosh-tunnel = mkFcScriptDrv { pname = "mosh-tunnel"; propagatedBuildInputs = [ + (python3.withPackages (ps: [ ps.asyncio-dgram ])) mosh openssh ]; - python = python3.withPackages (ps: [ ps.asyncio-dgram ]); }; mosh-dualstack-proxy = mkFcScriptDrv { pname = "mosh-dualstack-proxy";