17 lines
257 B
Nix
17 lines
257 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs;[
|
|
rustup
|
|
];
|
|
nativeBuildInputs = with pkgs;[
|
|
];
|
|
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
|
|
|
|
shellHook = ''
|
|
source .env
|
|
|
|
'';
|
|
|
|
UPLOAD_FOLDER="./test/";
|
|
}
|