2017-09-28 12:53:18 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
2012-12-01 20:28:32 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-09-28 12:53:18 +01:00
|
|
|
name = "onig-${version}";
|
|
|
|
version = "6.6.1";
|
2014-09-22 01:40:19 +01:00
|
|
|
|
2017-09-28 12:53:18 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kkos";
|
|
|
|
repo = "oniguruma";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "062g5443dyxsraq346panfqvbd6wal6nmb336n4dw1rszx576sxz";
|
2012-12-01 20:28:32 +00:00
|
|
|
};
|
2014-09-22 01:40:19 +01:00
|
|
|
|
2017-09-28 12:53:18 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2017-10-02 21:18:23 +01:00
|
|
|
prePatch = stdenv.lib.optional stdenv.isDarwin ''
|
|
|
|
substituteInPlace cmake/dist.cmake \
|
|
|
|
--replace '@executable_path/''${UP_DIR}/''${INSTALL_LIB}' $out'/''${INSTALL_LIB}'
|
|
|
|
'';
|
|
|
|
|
2012-12-01 20:28:32 +00:00
|
|
|
meta = {
|
2017-09-28 12:53:18 +01:00
|
|
|
homepage = https://github.com/kkos/oniguruma;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Regular expressions library";
|
2014-09-22 01:40:19 +01:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
2012-12-01 20:28:32 +00:00
|
|
|
};
|
|
|
|
}
|