Commit f044a8cd authored by D3vil0p3r's avatar D3vil0p3r
Browse files

maltego: apply review comments from maltego init PR

parent 51d4de8c
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -21,15 +21,15 @@ stdenv.mkDerivation (finalAttrs: {

  postPatch = ''
    substituteInPlace bin/maltego \
            --replace /usr/bin/awk ${lib.getExe gawk}
      --replace-fail /usr/bin/awk ${lib.getExe gawk}
  '';

  desktopItems = [
    (makeDesktopItem {
      name = finalAttrs.pname;
      name = "maltego";
      desktopName = "Maltego";
      exec = finalAttrs.meta.mainProgram;
      icon = finalAttrs.pname;
      exec = "maltego";
      icon = "maltego";
      comment = "An open source intelligence and forensics application";
      categories = [ "Network" "Security" ];
      startupNotify = false;
@@ -62,7 +62,7 @@ stdenv.mkDerivation (finalAttrs: {

    cp -aR . "$out/share/maltego/"

    makeWrapper $out/share/maltego/bin/maltego $out/bin/${finalAttrs.meta.mainProgram} \
    makeWrapper $out/share/maltego/bin/maltego $out/bin/maltego \
      --set JAVA_HOME ${jre} \
      --prefix PATH : ${lib.makeBinPath [ jre ]}

@@ -74,7 +74,7 @@ stdenv.mkDerivation (finalAttrs: {
    description = "An open source intelligence and forensics application, enabling to easily gather information about DNS, domains, IP addresses, websites, persons, and so on";
    mainProgram = "maltego";
    maintainers = with maintainers; [ emilytrau d3vil0p3r ];
    platforms = with platforms; linux ++ darwin;
    platforms = platforms.unix;
    sourceProvenance = with sourceTypes; [ binaryBytecode ];
    license = licenses.unfree;
  };