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:
hloeffler 2020-10-02 22:32:21 +02:00
parent d07c6856cb
commit 90e603fcec
2 changed files with 20 additions and 0 deletions

View file

@ -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/";
};
}

View file

@ -9588,6 +9588,8 @@ in
rgbds = callPackage ../development/compilers/rgbds { };
rgxg = callPackage ../tools/text/rgxg { };
rocclr = callPackage ../development/libraries/rocclr {
inherit (llvmPackages_rocm) clang;
};