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

  DATABASE_URL = "whirl.sqlite3";
}