7 stdenv.mkDerivation rec {
11 src = fetchFromGitHub {
13 repo = "compile-time-regular-expressions";
15 hash = "sha256-KqYBSY45x8FDQ0YgjrKoZdOiuhf33gv5w160/dSsSsg=";
18 nativeBuildInputs = [ cmake ];
21 substituteInPlace packaging/pkgconfig.pc.in \
22 --replace "\''${prefix}/" ""
28 description = "Fast compile-time regular expressions library";
30 Fast compile-time regular expressions with support for
31 matching/searching/capturing during compile-time or runtime.
33 license = licenses.asl20;
34 homepage = "https://compile-time.re";
35 maintainers = with maintainers; [ azahi ];
36 platforms = platforms.all;