aboutsummaryrefslogtreecommitdiff
path: root/nix/rust.nix
blob: 5b1dca78f5dce07eb8d8a41ddd7d75bc763b6ef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "rust-devel";
  buildInputs = with pkgs; [
    rust-analyzer rustc
    cargo-watch
    clangStdenv
    hello
  ];
}