28 lines
664 B
Nix
28 lines
664 B
Nix
{
|
|
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 = ''
|
|
echo "✅ Rust + PostgreSQL dev env ready"
|
|
'';
|
|
};
|
|
});
|
|
}
|