ctre: init at 3.7.1

main
Azat Bahawi 2 years ago committed by ehmry
parent e899e67e91
commit 6e36ee59a3
  1. 38
      pkgs/development/libraries/ctre/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,38 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "ctre";
version = "3.7.1";
src = fetchFromGitHub {
owner = "hanickadot";
repo = "compile-time-regular-expressions";
rev = "v${version}";
hash = "sha256-KqYBSY45x8FDQ0YgjrKoZdOiuhf33gv5w160/dSsSsg=";
};
nativeBuildInputs = [ cmake ];
postPatch = ''
substituteInPlace packaging/pkgconfig.pc.in \
--replace "\''${prefix}/" ""
'';
dontBuild = true;
meta = with lib; {
description = "Fast compile-time regular expressions library";
longDescription = ''
Fast compile-time regular expressions with support for
matching/searching/capturing during compile-time or runtime.
'';
license = licenses.asl20;
homepage = "https://compile-time.re";
maintainers = with maintainers; [ azahi ];
platforms = platforms.all;
};
}

@ -2456,6 +2456,8 @@ with pkgs;
msr = callPackage ../os-specific/linux/msr { };
ctre = callPackage ../development/libraries/ctre { };
ctrtool = callPackage ../tools/archivers/ctrtool { };
crowbar = callPackage ../tools/security/crowbar { };

Loading…
Cancel
Save