summaryrefslogtreecommitdiffstats
path: root/rust/shell.nix
blob: 5de4ca49cc0e2b835d90077dec5d89f9ab063642 (plain)
1
2
3
4
5
6
7
8
9
10
11
let
  moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
  nixpkgs = import <nixpkgs> { overlays = [ moz_overlay ]; };
in
  with nixpkgs;
  stdenv.mkDerivation {
    name = "moz_overlay_shell";
    buildInputs = [
      nixpkgs.latest.rustChannels.nightly.rust
    ];
  }