This commit is contained in:
counterweight 2025-07-24 17:52:34 +02:00
parent 8103be3c56
commit 43448cd80b
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
2 changed files with 59 additions and 0 deletions

29
flake.nix Normal file
View file

@ -0,0 +1,29 @@
{
description = "Rust dev env for Meltano toy project";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
rustup
pkg-config
openssl
postgresql
sqlx-cli
];
shellHook = ''
export DATABASE_URL=postgres://app:app123@localhost:5432/app_db
echo " Rust + PostgreSQL dev env ready"
'';
};
});
}