mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-21 11:31:09 +03:00
18 lines
352 B
Nix
18 lines
352 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
nativeBuildInputs = [ pkgs.clang ];
|
||
|
buildInputs = with pkgs; [
|
||
|
glibc
|
||
|
rustup
|
||
|
openssl
|
||
|
pkgconfig
|
||
|
llvmPackages.libclang
|
||
|
ncurses
|
||
|
glibcLocales
|
||
|
tor
|
||
|
];
|
||
|
shellHook = ''
|
||
|
export LIBCLANG_PATH="${pkgs.llvmPackages.libclang.lib}/lib";
|
||
|
'';
|
||
|
}
|