1 { lib, fetchurl, perlPackages }:
3 perlPackages.buildPerlPackage rec {
8 sha256 = "0r0wj6v8z9fzlh9pb5617kyjdf92ppmlbzajaarrq729bbb6ln5m";
9 url = "https://www.gson.org/egypt/download/${pname}-${version}.tar.gz";
14 enableParallelBuilding = true;
19 description = "Tool for making call graphs of C programmes";
20 mainProgram = "egypt";
22 Egypt is a simple tool for creating call graphs of C programs. It neither
23 analyzes source code nor lays out graphs. Instead, it leaves the source
24 code analysis to GCC and the graph layout to Graphviz, both of which are
25 better at their respective jobs than egypt itself could ever hope to be.
26 Egypt is simply a very small Perl script that glues these existing tools
29 homepage = "http://www.gson.org/egypt/";
30 license = with licenses; [ artistic1 gpl1Plus ];
31 platforms = platforms.unix;