24 lines
312 B
Nix
24 lines
312 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs;[
|
|
rustup
|
|
];
|
|
nativeBuildInputs = with pkgs;[
|
|
openssl
|
|
glib
|
|
gdk-pixbuf
|
|
pango
|
|
atk
|
|
xdo
|
|
lld
|
|
];
|
|
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
|
|
|
|
shellHook = ''
|
|
source .env
|
|
|
|
'';
|
|
|
|
UPLOAD_FOLDER="./test/";
|
|
}
|