feat(pg-migration): init

This commit is contained in:
2025-02-04 09:34:00 +00:00
parent eeda2fe61b
commit 5a78f6bbc0
7 changed files with 2675 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{ cargoToml, nativeBuildInputs, pkgs, ... }:
let
src = ./.;
cargo = cargoToml src;
in
pkgs.rustPlatform.buildRustPackage {
pname = cargo.package.name;
version = cargo.package.version;
inherit nativeBuildInputs src;
cargoLock.lockFile = ./Cargo.lock;
doCheck = true;
}