Unverified Commit d65015aa authored by Robert Hensing's avatar Robert Hensing Committed by GitHub
Browse files

Merge pull request #247755 from R-VdP/add_main_program

Treewide: add meta.mainProgram
parents f7985a0c 6b3a4030
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -65,6 +65,7 @@ let
          zowoq
          techknowlogick
        ];
        mainProgram = "terraform";
      };
    } // attrs');

+9 −2
Original line number Diff line number Diff line
{ lib, callPackage, buildDunePackage, re, ocamlformat-lib, menhir
, version ? "0.26.0" }:
{ lib
, callPackage
, buildDunePackage
, re
, ocamlformat-lib
, menhir
, version ? "0.26.0"
}:

let inherit (callPackage ./generic.nix { inherit version; }) src library_deps;

@@ -22,5 +28,6 @@ in buildDunePackage {
    description = "Auto-formatter for OCaml code";
    maintainers = with lib.maintainers; [ Zimmi48 marsam Julow ];
    license = lib.licenses.mit;
    mainProgram = "ocamlformat";
  };
}
+4 −1
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchFromGitHub
{ lib
, buildPythonPackage
, fetchFromGitHub
, colorama
, hypothesis
, poetry-core
@@ -77,5 +79,6 @@ buildPythonPackage rec {
    homepage = "https://github.com/PyCQA/isort";
    license = licenses.mit;
    maintainers = with maintainers; [ couchemar ];
    mainProgram = "isort";
  };
}
+4 −2
Original line number Diff line number Diff line
@@ -95,6 +95,8 @@ let
      homepage = "https://mdformat.rtfd.io/";
      license = with licenses; [ mit ];
      maintainers = with maintainers; [ fab aldoborrero ];
      mainProgram = "mdformat";
    };
  };
in package
in
package
+1 −0
Original line number Diff line number Diff line
@@ -45,5 +45,6 @@ python3.pkgs.buildPythonApplication rec {
    homepage = "https://github.com/lovesegfault/beautysh";
    license = with licenses; [ asl20 ];
    maintainers = with maintainers; [ fab ];
    mainProgram = "beautysh";
  };
}
Loading