18 lines
303 B
Nix
18 lines
303 B
Nix
|
let pkgs = import <nixpkgs> { };
|
||
|
in pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
rustc
|
||
|
cargo
|
||
|
rls
|
||
|
rustfmt
|
||
|
openssl
|
||
|
pkg-config
|
||
|
postgresql
|
||
|
|
||
|
diesel-cli
|
||
|
];
|
||
|
|
||
|
DATABASE_URL = "postgres://xatci:hunter2@127.0.0.1/xatci?sslmode=disable";
|
||
|
DOMAIN = "https://xeserv.auth0.com/";
|
||
|
}
|