update nixpkgs
btcpayserver: 1.11.2 -> 1.11.4 clightning: 23.05.2 -> 23.08.1 hwi: 2.2.1 -> 2.3.1 Remove custom coincurve, since nixos-23.05 includes the latest version of coincurve (18) that's required by pyln-proto. Co-authored-by: Erik Arvstedt <erik.arvstedt@gmail.com>
This commit is contained in:
parent
19b997fde7
commit
c1b370aaa6
15 changed files with 592 additions and 45 deletions
13
pkgs/python-packages/setuptools-rust-hook/default.nix
Normal file
13
pkgs/python-packages/setuptools-rust-hook/default.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ lib, stdenv, python, makePythonHook, setuptools-rust, rust }:
|
||||
makePythonHook {
|
||||
name = "setuptools-rust-setup-hook";
|
||||
propagatedBuildInputs = [ setuptools-rust ];
|
||||
substitutions = {
|
||||
pyLibDir = "${python}/lib/${python.libPrefix}";
|
||||
cargoBuildTarget = rust.toRustTargetSpec stdenv.hostPlatform;
|
||||
cargoLinkerVar = lib.toUpper (
|
||||
builtins.replaceStrings ["-"] ["_"] (
|
||||
rust.toRustTarget stdenv.hostPlatform));
|
||||
targetLinker = "${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc";
|
||||
};
|
||||
} ./setuptools-rust-hook.sh
|
||||
Loading…
Add table
Add a link
Reference in a new issue