add shell.nix

refactor_anto
Sebastien Bourdeauducq 2020-11-10 20:39:25 +08:00
parent d538988e5a
commit d7ded27def
1 changed files with 9 additions and 0 deletions

9
shell.nix Normal file
View File

@ -0,0 +1,9 @@
let
pkgs = import <nixpkgs> { };
in
pkgs.stdenv.mkDerivation {
name = "nac3-env";
buildInputs = with pkgs; [
llvm_10 clang_10 cargo rustc libffi libxml2
];
}