nixpkgs/pkgs/development/libraries/re2/default.nix

38 lines
1000 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "re2";
version = "2021-04-01";
2019-05-31 20:21:14 +01:00
src = fetchFromGitHub {
owner = "google";
repo = "re2";
rev = version;
sha256 = "1iia0883lssj7ckbsr0n7yb3gdw24c8wnl2q5hhzlml23h4ipbh3";
};
preConfigure = ''
substituteInPlace Makefile --replace "/usr/local" "$out"
2019-05-31 20:21:14 +01:00
# we're using gnu sed, even on darwin
substituteInPlace Makefile --replace "SED_INPLACE=sed -i '''" "SED_INPLACE=sed -i"
'';
buildFlags = lib.optionals stdenv.hostPlatform.isStatic [ "static" ];
2019-05-31 22:28:45 +01:00
preCheck = "patchShebangs runtests";
doCheck = true;
checkTarget = "test";
installTargets = lib.optionals stdenv.hostPlatform.isStatic [ "static-install" ];
2019-05-31 22:28:45 +01:00
doInstallCheck = true;
installCheckTarget = "testinstall";
meta = {
homepage = "https://github.com/google/re2";
description = "An efficient, principled regular expression library";
license = lib.licenses.bsd3;
platforms = with lib.platforms; all;
};
}