Adding cbrowser. Have cscope on the path to use it (which you should already
have, because otherwise how would you have created the database for cbrowser?) svn path=/nixpkgs/trunk/; revision=29831
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
{ fetchurl, stdenv, cscope, tk, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cbrowser-0.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/cbrowser/cbrowser-0.8.tar.gz";
|
||||
sha256 = "1050mirjab23qsnq3lp3a9vwcbavmh9kznzjm7dr5vkx8b7ffcji";
|
||||
};
|
||||
|
||||
patches = [ ./backslashes-quotes.diff ];
|
||||
|
||||
buildInputs = [ tk makeWrapper ];
|
||||
|
||||
installPhase = ''
|
||||
ensureDir $out/bin $out/share/${name}
|
||||
cp -R * $out/share/${name}/
|
||||
|
||||
makeWrapper $out/share/${name}/cbrowser $out/bin/cbrowser \
|
||||
--prefix PATH : ${tk}/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Tcl/Tk GUI front-end to cscope";
|
||||
|
||||
license = "GPLv2+";
|
||||
|
||||
homepage = http://sourceforge.net/projects/cbrowser/;
|
||||
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user