There was an error while loading. Please reload this page.
1 parent d1adfd7 commit 1bcb5baCopy full SHA for 1bcb5ba
1 file changed
flake.nix
@@ -51,6 +51,15 @@
51
};
52
53
54
+ packages.default = pkgs.rustPlatform.buildRustPackage {
55
+ pname = "seabird-core";
56
+ version = (builtins.fromTOML (builtins.readFile ./Cargo.toml)).package.version;
57
+ src = ./.;
58
+ cargoLock.lockFile = ./Cargo.lock;
59
+ nativeBuildInputs = [ pkgs.protobuf ];
60
+ SQLX_OFFLINE = true;
61
+ };
62
+
63
devShells.default = pkgs.mkShell {
64
packages = [
65
pkgs.cargo
0 commit comments