tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
oniguruma: remove darwin install_name patch
Daiderd Jordan
7 years ago
fe6386c2
8edb13f0
+4
-9
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
oniguruma
default.nix
+4
-9
pkgs/development/libraries/oniguruma/default.nix
···
13
13
14
14
nativeBuildInputs = [ cmake ];
15
15
16
16
-
prePatch = stdenv.lib.optional stdenv.isDarwin ''
17
17
-
substituteInPlace cmake/dist.cmake \
18
18
-
--replace '@executable_path/''${UP_DIR}/''${INSTALL_LIB}' $out'/''${INSTALL_LIB}'
19
19
-
'';
20
20
-
21
21
-
meta = {
16
16
+
meta = with stdenv.lib; {
22
17
homepage = https://github.com/kkos/oniguruma;
23
18
description = "Regular expressions library";
24
24
-
license = stdenv.lib.licenses.bsd2;
25
25
-
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
26
26
-
platforms = with stdenv.lib.platforms; unix;
19
19
+
license = licenses.bsd2;
20
20
+
maintainers = with maintainers; [ fuuzetsu ];
21
21
+
platforms = platforms.unix;
27
22
};
28
23
}