2009-12-11 15:47:16 +01:00
|
|
|
{ fetchurl, stdenv, ncurses, pkgconfig, emacs}:
|
2008-08-25 17:34:14 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-08-23 10:15:12 +02:00
|
|
|
name = "cscope-15.8a";
|
2008-08-25 17:34:14 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-08-23 10:15:12 +02:00
|
|
|
url = "mirror://sourceforge/cscope/${name}.tar.gz";
|
|
|
|
sha256 = "07jdhxvp3dv7acvp0pwsdab1g2ncxjlcf838lj7vxgjs1p26lwzb";
|
2008-08-25 17:34:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sed -i "contrib/xcscope/cscope-indexer" \
|
2008-08-25 21:34:14 +02:00
|
|
|
-"es|^PATH=.*$|PATH=\"$out/bin:\$PATH\"|g"
|
2008-08-25 17:34:14 +02:00
|
|
|
sed -i "contrib/xcscope/xcscope.el" \
|
|
|
|
-"es|\"cscope-indexer\"|\"$out/libexec/cscope/cscope-indexer\"|g";
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = "--with-ncurses=${ncurses}";
|
|
|
|
|
2010-12-04 22:43:24 +01:00
|
|
|
buildInputs = [ ncurses ];
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig emacs ];
|
2008-08-25 17:34:14 +02:00
|
|
|
|
2009-12-11 15:47:16 +01:00
|
|
|
postInstall = ''
|
2008-08-25 17:34:14 +02:00
|
|
|
# Install Emacs mode.
|
|
|
|
cd "contrib/xcscope"
|
|
|
|
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p "$out/libexec/cscope"
|
2008-08-25 17:34:14 +02:00
|
|
|
cp "cscope-indexer" "$out/libexec/cscope"
|
|
|
|
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p "$out/share/emacs/site-lisp"
|
2008-08-25 17:34:14 +02:00
|
|
|
emacs --batch --eval '(byte-compile-file "xcscope.el")'
|
|
|
|
cp xcscope.el{,c} "$out/share/emacs/site-lisp"
|
2009-12-11 15:47:16 +01:00
|
|
|
'';
|
2008-08-25 17:34:14 +02:00
|
|
|
|
2010-08-11 22:07:22 +02:00
|
|
|
crossAttrs = {
|
|
|
|
postInstall = "";
|
2012-12-28 19:08:19 +01:00
|
|
|
propagatedBuildInputs = [ ncurses.crossDrv ];
|
2010-08-11 22:07:22 +02:00
|
|
|
};
|
|
|
|
|
2008-08-25 17:34:14 +02:00
|
|
|
meta = {
|
|
|
|
description = "Cscope, a developer's tool for browsing source code";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Cscope is a developer's tool for browsing source code. It has
|
|
|
|
an impeccable Unix pedigree, having been originally developed at
|
|
|
|
Bell Labs back in the days of the PDP-11. Cscope was part of
|
|
|
|
the official AT&T Unix distribution for many years, and has been
|
|
|
|
used to manage projects involving 20 million lines of code!
|
|
|
|
'';
|
|
|
|
|
|
|
|
license = "BSD-style";
|
|
|
|
|
|
|
|
homepage = http://cscope.sourceforge.net/;
|
2009-12-11 15:47:16 +01:00
|
|
|
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2008-08-25 17:34:14 +02:00
|
|
|
};
|
|
|
|
}
|