We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbb0372 commit 67a09fbCopy full SHA for 67a09fb
rust/Cargo.lock
rust/flake.nix
@@ -51,14 +51,14 @@
51
);
52
in
53
{
54
- formatter = eachSystem (pkgs: pkgs.nixfmt-rfc-style);
+ formatter = eachSystem ({ pkgs, ... }: pkgs.nixfmt-rfc-style);
55
packages = eachSystem (
56
{ pkgs, craneLib }:
57
58
default = craneLib.buildPackage {
59
src = craneLib.cleanCargoSource ./.;
60
strictDeps = true;
61
- buildInputs = [ pkgs.openssl ];
+ # buildInputs = [ pkgs.openssl ];
62
};
63
}
64
@@ -74,7 +74,7 @@
74
mold
75
];
76
RUSTFLAGS = "-C link-arg=-fuse-ld=mold";
77
- LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ pkgs.openssl ];
+ # LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ pkgs.openssl ];
78
79
80
0 commit comments