Neo-Poseidon/shell.nix

7 lines
309 B
Nix
Raw Normal View History

2019-01-23 01:17:15 +01:00
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 ];
}