depot/third_party/nixpkgs/pkgs/development/coq-modules/coqide/default.nix

72 lines
1.4 KiB
Nix

{
lib,
makeDesktopItem,
copyDesktopItems,
wrapGAppsHook3,
glib,
adwaita-icon-theme,
mkCoqDerivation,
coq,
version ? null,
}:
mkCoqDerivation rec {
pname = "coqide";
inherit version;
inherit (coq) src;
release."${coq.version}" = { };
defaultVersion = if lib.versions.isGe "8.14" coq.version then coq.version else null;
preConfigure = ''
patchShebangs dev/tools/
'';
prefixKey = "-prefix ";
useDune = true;
buildInputs = [
copyDesktopItems
wrapGAppsHook3
coq.ocamlPackages.lablgtk3-sourceview3
glib
adwaita-icon-theme
];
buildPhase = ''
runHook preBuild
dune build -p ${pname} -j $NIX_BUILD_CORES
runHook postBuild
'';
installPhase = ''
runHook preInstall
dune install --prefix $out ${pname}
runHook postInstall
'';
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";
description = "CoqIDE user interface for the Coq proof assistant";
mainProgram = "coqide";
license = licenses.lgpl21Plus;
maintainers = [ maintainers.Zimmi48 ];
};
}