summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/makefile2graph/default.nix
blob: 5c286e6295476f208d27e4d38a27889398688b1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib, stdenv, fetchFromGitHub, makeWrapper, bash, gnumake }:

stdenv.mkDerivation rec {
  pname = "makefile2graph";
  version = "unstable-2018-01-03";

  src = fetchFromGitHub {
    owner = "lindenb";
    repo = "makefile2graph";
    rev = "61fb95a5ba91c20236f5e4deb11127c34b47091f";
    sha256 = "07hq40bl48i8ka35fcciqcafpd8k9rby1wf4vl2p53v0665xaghr";
  };

  nativeBuildInputs = [ makeWrapper ];

  makeFlags = [ "prefix=$(out)" ];

  fixupPhase = ''
    substituteInPlace $out/bin/makefile2graph \
      --replace '/bin/sh' ${bash}/bin/bash \
      --replace 'make2graph' "$out/bin/make2graph"
    wrapProgram $out/bin/makefile2graph \
      --set PATH ${lib.makeBinPath [ gnumake ]}
  '';

  meta = with lib; {
    homepage = "https://github.com/lindenb/makefile2graph";
    description = "Creates a graph of dependencies from GNU-Make; Output is a graphiz-dot file or a Gexf-XML file";
    maintainers = with maintainers; [ cmcdragonkai ];
    license = licenses.mit;
    platforms = platforms.all;
  };
}