nixpkgs/pkgs/development/tools/misc/cbrowser/default.nix
Lluís Batlle i Rossell dbdfb3d11c 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
2011-10-14 07:47:20 +00:00

35 lines
798 B
Nix

{ 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;
};
}