nimPackages.regex: eeefb4f -> 0.20.2

This commit is contained in:
Emery Hemingway 2023-07-18 10:31:04 +01:00
parent 6a369a77e0
commit 83ecef0234

View File

@ -1,8 +1,20 @@
{ fetchFromGitHub }:
{ lib, buildNimPackage, fetchFromGitHub, unicodedb }:
fetchFromGitHub {
owner = "nitely";
repo = "nim-regex";
rev = "eeefb4f";
sha256 = "13gn0qhnxz07474kv94br5qlac9j8pz2555fk83538fiq83vgbm5";
}
buildNimPackage (finalAttrs: {
pname = "regex";
version = "0.20.2";
src = fetchFromGitHub {
owner = "nitely";
repo = "nim-regex";
rev = "v${finalAttrs.version}";
hash = "sha256-VViDf0uD6bj9WOO827NRbLUt+PgBPEmz/A/DDRCrHpc=";
};
propagatedBuildInputs = [ unicodedb ];
doCheck = false;
meta = finalAttrs.src.meta // {
description = "Pure Nim regex engine";
homepage = "https://github.com/nitely/nim-regex";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ehmry ];
};
})