5 lines
122 B
Nix
5 lines
122 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [ cargo rustc pkg-config sqlite diesel-cli];
|
|
}
|