rgxg: init at 0.1.2
Co-authored-by: Doron Behar <doron.behar@gmail.com> Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
This commit is contained in:
parent
d07c6856cb
commit
90e603fcec
|
@ -0,0 +1,18 @@
|
|||
{ stdenv, fetchzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rgxg";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/rgxg/rgxg/releases/download/v${version}/${pname}-${version}.tar.gz";
|
||||
sha256 = "050jxc3qhfrm9fdbzd67hlsqlp4qk1fa20q1g2v919sh7s6v77si";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A C library and a command-line tool to generate (extended) regular expressions";
|
||||
license = licenses.zlib;
|
||||
maintainers = with maintainers; [ hloeffler ];
|
||||
homepage = "https://rgxg.github.io/";
|
||||
};
|
||||
}
|
|
@ -9588,6 +9588,8 @@ in
|
|||
|
||||
rgbds = callPackage ../development/compilers/rgbds { };
|
||||
|
||||
rgxg = callPackage ../tools/text/rgxg { };
|
||||
|
||||
rocclr = callPackage ../development/libraries/rocclr {
|
||||
inherit (llvmPackages_rocm) clang;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue