aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 620500f331bee1f6fc354d4cdca75905ffab7b10 (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 = "sqlite:whirl.db";
}