summaryrefslogtreecommitdiff
path: root/shell.nix
blob: dfd7db7539306988c90256efcf4f2c35cc5e7027 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs ? import <nixpkgs> {} }:

let
    sources = import ./nix/sources.nix;
    pkgs = import sources.nixpkgs {};
    rust = import ./nix/rust.nix { inherit sources; };
in
pkgs.mkShell {
  buildInputs = [
    pkgs.hello
    rust 

    # keep this line if you use bash
    pkgs.bashInteractive
  ];
}