Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c953f8e557c6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a4f772435ddb
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 29, 2017

  1. Copy the full SHA
    86e1604 View commit details

Commits on May 17, 2017

  1. Merge pull request #25309 from acowley/rtags-id

    rtags: link to libclang.dylib at absolute path on darwin
    LnL7 authored May 17, 2017
    Copy the full SHA
    a4f7724 View commit details
Showing with 6 additions and 0 deletions.
  1. +6 −0 pkgs/development/tools/rtags/default.nix
6 changes: 6 additions & 0 deletions pkgs/development/tools/rtags/default.nix
Original file line number Diff line number Diff line change
@@ -22,6 +22,12 @@ stdenv.mkDerivation rec {

enableParallelBuilding = true;

postInstall = lib.optionalString stdenv.isDarwin ''
for f in $out/bin/{rc,rdm,rp}; do
install_name_tool -change @rpath/libclang.dylib ${llvmPackages.clang.cc}/lib/libclang.dylib ''${f}
done
'';

meta = {
description = "C/C++ client-server indexer based on clang";
homepage = https://github.com/andersbakken/rtags;