aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 1c5327d64cdbd851461177e820495e28f60fe435 (plain) (blame)
1
2
3
4
5
6
7
8
let
    sources = import ./nix/sources.nix;
    rust = import ./nix/rust.nix { inherit sources; };
    pkgs = import sources.nixpkgs { };
in
pkgs.mkShell {
    buildInputs = with pkgs; [ rust ];
}