Compare commits
2 commits
5e489fb7c8
...
5acb380fc0
| Author | SHA1 | Date | |
|---|---|---|---|
| 5acb380fc0 | |||
| 5a0ca84534 |
1 changed files with 2 additions and 3 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue