logsmash/nix/logging-extractor.nix
Robin Appelman 550f507687
All checks were successful
CI / checks (push) Successful in 2m27s
CI / build (push) Successful in 2m39s
CI / build-nixpkgs (push) Successful in 45s
update source versions for data extractions
2025-12-01 22:51:57 +01:00

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;
};
}