Unverified Commit e6fc9d1f authored by h7x4's avatar h7x4
Browse files

coqPackages.coqide: fix `desktopItems`

parent 1dc5de05
Loading
Loading
Loading
Loading
+10 −8
Original line number Diff line number Diff line
@@ -43,14 +43,16 @@ mkCoqDerivation rec {
    runHook postInstall
  '';

  desktopItems = makeDesktopItem {
  desktopItems = [
    (makeDesktopItem {
      name = "coqide";
      exec = "coqide";
      icon = "coq";
      desktopName = "CoqIDE";
      comment = "Graphical interface for the Coq proof assistant";
      categories = [ "Development" "Science" "Math" "IDE" "GTK" ];
  };
    })
  ];

  meta = with lib; {
    homepage = "https://coq.inria.fr";