74d72ee6bf
of stdenv. svn path=/nixpkgs/trunk/; revision=12714
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ fetchurl, stdenv, ncurses, pkgconfig, emacs }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cscope-15.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/cscope/${name}.tar.gz";
|
|
sha256 = "1jn5r9xhys7dlhxxiwffx9wrxlaf9i9ffh6dw516w79a83pn2r3d";
|
|
};
|
|
|
|
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}";
|
|
|
|
buildInputs = [ ncurses pkgconfig emacs ];
|
|
|
|
postInstall = ''
|
|
# Install Emacs mode.
|
|
cd "contrib/xcscope"
|
|
|
|
ensureDir "$out/libexec/cscope"
|
|
cp "cscope-indexer" "$out/libexec/cscope"
|
|
|
|
ensureDir "$out/share/emacs/site-lisp"
|
|
emacs --batch --eval '(byte-compile-file "xcscope.el")'
|
|
cp xcscope.el{,c} "$out/share/emacs/site-lisp"
|
|
'';
|
|
|
|
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/;
|
|
};
|
|
}
|