generate-secrets: fix python version for rpcauth
I accidentally included the minor version number. Version 3.5 has been removed from nixpkgs unstable.
This commit is contained in:
parent
43cac9d35e
commit
774da9d4e0
@ -6,7 +6,7 @@ let
|
|||||||
sha256 = "189mpplam6yzizssrgiyv70c9899ggh8cac76j4n7v0xqzfip07n";
|
sha256 = "189mpplam6yzizssrgiyv70c9899ggh8cac76j4n7v0xqzfip07n";
|
||||||
};
|
};
|
||||||
rpcauth = pkgs.writeScriptBin "rpcauth" ''
|
rpcauth = pkgs.writeScriptBin "rpcauth" ''
|
||||||
exec ${pkgs.python35}/bin/python ${rpcauthSrc} "$@"
|
exec ${pkgs.python3}/bin/python ${rpcauthSrc} "$@"
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
writeScript "generate-secrets" ''
|
writeScript "generate-secrets" ''
|
||||||
|
Loading…
Reference in New Issue
Block a user