mirror of
https://codeberg.org/icewind/logsmash.git
synced 2026-06-03 18:14:11 +02:00
17 lines
352 B
Nix
17 lines
352 B
Nix
{
|
|
rustPlatform,
|
|
lib,
|
|
}: let
|
|
inherit (lib.sources) sourceByRegex;
|
|
src = sourceByRegex ../logging-extractor ["Cargo.*" "(src|tests|test-data)(/.*)?"];
|
|
in
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "logging-extractor";
|
|
version = "0.1.0";
|
|
|
|
inherit src;
|
|
|
|
cargoLock = {
|
|
lockFile = ../logging-extractor/Cargo.lock;
|
|
};
|
|
}
|