lol

oniguruma: remove darwin install_name patch

+4 -9
+4 -9
pkgs/development/libraries/oniguruma/default.nix
··· 13 13 14 14 nativeBuildInputs = [ cmake ]; 15 15 16 - prePatch = stdenv.lib.optional stdenv.isDarwin '' 17 - substituteInPlace cmake/dist.cmake \ 18 - --replace '@executable_path/''${UP_DIR}/''${INSTALL_LIB}' $out'/''${INSTALL_LIB}' 19 - ''; 20 - 21 - meta = { 16 + meta = with stdenv.lib; { 22 17 homepage = https://github.com/kkos/oniguruma; 23 18 description = "Regular expressions library"; 24 - license = stdenv.lib.licenses.bsd2; 25 - maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 26 - platforms = with stdenv.lib.platforms; unix; 19 + license = licenses.bsd2; 20 + maintainers = with maintainers; [ fuuzetsu ]; 21 + platforms = platforms.unix; 27 22 }; 28 23 }