nixpkgs/pkgs/development/tools/analysis/egypt/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

34 lines
1.0 KiB
Nix

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