We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 078b36f commit 517c360Copy full SHA for 517c360
default.nix
@@ -1,7 +1,13 @@
1
{ pkgs ? import <nixpkgs> { } }:
2
pkgs.rustPlatform.buildRustPackage rec {
3
pname = "mod_installer";
4
- version = "9.2.1";
+ version = "10.2.0";
5
cargoLock.lockFile = ./Cargo.lock;
6
src = pkgs.lib.cleanSource ./.;
7
+ buildInputs = with pkgs; [
8
+ openssl
9
+ ];
10
+ nativeBuildInputs = with pkgs; [
11
+ pkg-config
12
13
}
shell.nix
@@ -6,10 +6,15 @@ stdenv.mkDerivation {
cargo
git
gnupg
pre-commit
rustup
];
14
15
16
17
# Set Environment Variables
18
RUST_BACKTRACE = 1;
19
+ LD_LIBRARY_PATH = lib.makeLibraryPath [ openssl ];
20
0 commit comments