blob: 481cbc6fbbe5c12fd77dc915fcf4b88dc428f9d8 (
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; [ rust ];
DATABASE_URL = "sqlite:whirl.db";
}
|