biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / analysis / egypt / default.nix
blob5c9b4ef0453dff0f0a20d088539d95ca615703c1
1 { lib, fetchurl, perlPackages }:
3 perlPackages.buildPerlPackage rec {
4   pname = "egypt";
5   version = "1.10";
7   src = fetchurl {
8     sha256 = "0r0wj6v8z9fzlh9pb5617kyjdf92ppmlbzajaarrq729bbb6ln5m";
9     url = "https://www.gson.org/egypt/download/${pname}-${version}.tar.gz";
10   };
12   outputs = [ "out" ];
14   enableParallelBuilding = true;
16   doCheck = true;
18   meta = with lib; {
19     description = "Tool for making call graphs of C programmes";
20     mainProgram = "egypt";
21     longDescription = ''
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
27       together.
28     '';
29     homepage = "http://www.gson.org/egypt/";
30     license = with licenses; [ artistic1 gpl1Plus ];
31     platforms = platforms.unix;
32   };