about summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/makefile2graph
diff options
context:
space:
mode:
authorRoger Qiu <roger.qiu@polyhack.io>2018-09-18 18:03:14 +1000
committerOrivej Desh (NixOS) <40807862+orivej-nixos@users.noreply.github.com>2018-09-18 08:03:14 +0000
commit9f3c27a10451bf69b15f411b46f1ac3638f443f2 (patch)
tree018e88b19f116ef2112b8a913f1cf8e767fb682a /pkgs/development/tools/analysis/makefile2graph
parente433f1cbf9a51f65e00a7e63d0b09c8257e8081a (diff)
downloadnixlib-9f3c27a10451bf69b15f411b46f1ac3638f443f2.tar
nixlib-9f3c27a10451bf69b15f411b46f1ac3638f443f2.tar.gz
nixlib-9f3c27a10451bf69b15f411b46f1ac3638f443f2.tar.bz2
nixlib-9f3c27a10451bf69b15f411b46f1ac3638f443f2.tar.lz
nixlib-9f3c27a10451bf69b15f411b46f1ac3638f443f2.tar.xz
nixlib-9f3c27a10451bf69b15f411b46f1ac3638f443f2.tar.zst
nixlib-9f3c27a10451bf69b15f411b46f1ac3638f443f2.zip
makefile2graph: init at 2018-01-03 (#46136)
Diffstat (limited to 'pkgs/development/tools/analysis/makefile2graph')
-rw-r--r--pkgs/development/tools/analysis/makefile2graph/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/tools/analysis/makefile2graph/default.nix b/pkgs/development/tools/analysis/makefile2graph/default.nix
new file mode 100644
index 000000000000..7afa71429a75
--- /dev/null
+++ b/pkgs/development/tools/analysis/makefile2graph/default.nix
@@ -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;
+  };
+}