xre: init at 0.1.1

https://github.com/wfxr/xre
This commit is contained in:
Doron Behar
2026-03-19 22:39:50 +02:00
parent 8daf95d10e
commit fded9fc8c8
+31
View File
@@ -0,0 +1,31 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "xre";
version = "0.1.1";
src = fetchFromGitHub {
owner = "wfxr";
repo = "xre";
tag = "v${finalAttrs.version}";
hash = "sha256-auK7A99QdIJehj0tsM2WH/QEcNktZddoG86zwXD4g4Q=";
};
cargoHash = "sha256-ZgPMMUc5nGJMDY3q3n+37Nv0kjRIARooHG2RxWI3o88=";
meta = {
description = "Fast regex extraction tool with pattern matching, replacement, and configurable sorting";
homepage = "https://github.com/wfxr/xre";
changelog = "https://github.com/wfxr/xre/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = with lib.licenses; [
asl20
mit
];
maintainers = with lib.maintainers; [ doronbehar ];
mainProgram = "xre";
};
})