Add GNU cflow.
svn path=/nixpkgs/trunk/; revision=13129
This commit is contained in:
parent
89c807afc1
commit
6921e41e84
35
pkgs/development/tools/misc/cflow/default.nix
Normal file
35
pkgs/development/tools/misc/cflow/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ stdenv, fetchurl, gettext, emacs }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "cflow-1.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnu/cflow/${name}.tar.bz2";
|
||||||
|
sha256 = "0b45b1x1g9i23mv68pjl008qm4lkbd62hka2bf2gkjd2n4nalc6v";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ gettext emacs ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "GNU cflow, a tool to analyze the control flow of C programs";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
GNU cflow analyzes a collection of C source files and prints a
|
||||||
|
graph, charting control flow within the program.
|
||||||
|
|
||||||
|
GNU cflow is able to produce both direct and inverted flowgraphs
|
||||||
|
for C sources. Optionally a cross-reference listing can be
|
||||||
|
generated. Two output formats are implemented: POSIX and GNU
|
||||||
|
(extended).
|
||||||
|
|
||||||
|
The package also provides Emacs major mode for examining the
|
||||||
|
produced flowcharts in Emacs.
|
||||||
|
'';
|
||||||
|
|
||||||
|
license = "GPLv3+";
|
||||||
|
|
||||||
|
homepage = http://www.gnu.org/software/cflow/;
|
||||||
|
};
|
||||||
|
}
|
@ -2225,6 +2225,10 @@ let
|
|||||||
inherit fetchurl stdenv flex bison;
|
inherit fetchurl stdenv flex bison;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
cflow = import ../development/tools/misc/cflow {
|
||||||
|
inherit fetchurl stdenv gettext emacs;
|
||||||
|
};
|
||||||
|
|
||||||
cscope = import ../development/tools/misc/cscope {
|
cscope = import ../development/tools/misc/cscope {
|
||||||
inherit fetchurl stdenv ncurses pkgconfig emacs;
|
inherit fetchurl stdenv ncurses pkgconfig emacs;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user