ctre: init at 3.7.1
This commit is contained in:
parent
e899e67e91
commit
6e36ee59a3
2 changed files with 40 additions and 0 deletions
38
pkgs/development/libraries/ctre/default.nix
Normal file
38
pkgs/development/libraries/ctre/default.nix
Normal file
|
@ -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…
Reference in a new issue