makefile2graph: init at 2018-01-03 (#46136)
This commit is contained in:
parent
e433f1cbf9
commit
9f3c27a104
2 changed files with 34 additions and 0 deletions
32
pkgs/development/tools/analysis/makefile2graph/default.nix
Normal file
32
pkgs/development/tools/analysis/makefile2graph/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ stdenv, fetchFromGitHub, makeWrapper, bash, gnumake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "makefile2graph-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 ${stdenv.lib.makeBinPath [ gnumake ]}
|
||||
'';
|
||||
|
||||
meta = with stdenv.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.linux;
|
||||
};
|
||||
}
|
|
@ -3927,6 +3927,8 @@ with pkgs;
|
|||
|
||||
makerpm = callPackage ../development/tools/makerpm { };
|
||||
|
||||
makefile2graph = callPackage ../development/tools/analysis/makefile2graph { };
|
||||
|
||||
# See https://github.com/NixOS/nixpkgs/issues/15849. I'm switching on isLinux because
|
||||
# it looks like gnulib is broken on non-linux, so it seems likely that this would cause
|
||||
# trouble on bsd and/or cygwin as well.
|
||||
|
|
Loading…
Reference in a new issue