18 lines
279 B
Nix
18 lines
279 B
Nix
{ pkgs ? import <nixpkgs> {config.allowUnfree=true;} }:
|
|
|
|
pkgs.mkShell {
|
|
name = "xmrig-nvidia-env";
|
|
buildInputs = with pkgs; [
|
|
cmake
|
|
libuv
|
|
openssl
|
|
pkgconfig
|
|
haskellPackages.cuda
|
|
cudaPackages.cudatoolkit
|
|
libmicrohttpd
|
|
];
|
|
shellHook = ''
|
|
'';
|
|
}
|
|
|