Merge pull request #18728 from dudebout/cscope-cleanup

Cscope cleanup
This commit is contained in:
Joachim F 2016-09-21 20:36:29 +02:00 committed by GitHub
commit 3b19fcb2dc

View File

@ -1,29 +1,28 @@
{ fetchurl, stdenv, ncurses, pkgconfig, emacs}: { fetchurl, stdenv, ncurses
, emacsSupport ? true, emacs
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "cscope-15.8a"; name = "cscope-15.8b";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/cscope/${name}.tar.gz"; url = "mirror://sourceforge/cscope/${name}.tar.gz";
sha256 = "07jdhxvp3dv7acvp0pwsdab1g2ncxjlcf838lj7vxgjs1p26lwzb"; sha256 = "1byk29rcpyygrnr03h5j3y8j0aqxldd9dr5ihi9q982sy28x12a8";
}; };
preConfigure = ''
sed -i "contrib/xcscope/cscope-indexer" \
-"es|^PATH=.*$|PATH=\"$out/bin:\$PATH\"|g"
sed -i "contrib/xcscope/xcscope.el" \
-"es|\"cscope-indexer\"|\"$out/libexec/cscope/cscope-indexer\"|g";
'';
configureFlags = "--with-ncurses=${ncurses.dev}"; configureFlags = "--with-ncurses=${ncurses.dev}";
buildInputs = [ ncurses ]; buildInputs = [ ncurses ];
nativeBuildInputs = [ pkgconfig emacs ]; nativeBuildInputs = stdenv.lib.optional emacsSupport emacs;
postInstall = '' postInstall = stdenv.lib.optionalString emacsSupport ''
# Install Emacs mode.
cd "contrib/xcscope" cd "contrib/xcscope"
sed -i "cscope-indexer" \
-"es|^PATH=.*$|PATH=\"$out/bin:\$PATH\"|g"
sed -i "xcscope.el" \
-"es|\"cscope-indexer\"|\"$out/libexec/cscope/cscope-indexer\"|g";
mkdir -p "$out/libexec/cscope" mkdir -p "$out/libexec/cscope"
cp "cscope-indexer" "$out/libexec/cscope" cp "cscope-indexer" "$out/libexec/cscope"