formatting

This commit is contained in:
Robin Appelman 2025-05-26 18:42:12 +02:00
commit 2197181ab4
7 changed files with 132 additions and 126 deletions

View file

@ -1,19 +1,18 @@
{ stdenv
, rustPlatform
, lib
,
}:
let
{
stdenv,
rustPlatform,
lib,
}: let
inherit (lib.sources) sourceByRegex;
src = sourceByRegex ../logging-extractor [ "Cargo.*" "(src|tests|test-data)(/.*)?" ];
src = sourceByRegex ../logging-extractor ["Cargo.*" "(src|tests|test-data)(/.*)?"];
in
rustPlatform.buildRustPackage rec {
pname = "logging-extractor";
version = "0.1.0";
rustPlatform.buildRustPackage rec {
pname = "logging-extractor";
version = "0.1.0";
inherit src;
inherit src;
cargoLock = {
lockFile = ../logging-extractor/Cargo.lock;
};
}
cargoLock = {
lockFile = ../logging-extractor/Cargo.lock;
};
}