Compare commits
No commits in common. "49c49b8b157e5103f40fa3c8424e554c73590c0b" and "9956d67c27aea41d697fc7dbab246d91982c3056" have entirely different histories.
49c49b8b15
...
9956d67c27
|
@ -1,11 +1,13 @@
|
|||
let
|
||||
pkgs = import <nixpkgs> {};
|
||||
lib = pkgs.lib;
|
||||
in
|
||||
pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs; [
|
||||
with import <nixpkgs> {};
|
||||
|
||||
mkShell {
|
||||
NIX_LD_LIBRARY_PATH = lib.makeLibraryPath [
|
||||
stdenv.cc.cc
|
||||
];
|
||||
NIX_LD = lib.fileContents "${stdenv.cc}/nix-support/dynamic-linker";
|
||||
|
||||
buildInputs = [
|
||||
cargo
|
||||
rustc
|
||||
rust-analyzer
|
||||
];
|
||||
}
|
||||
|
|
Reference in a new issue