ocaml-top: remove unused dependencies

This commit is contained in:
Vincent Laporte 2023-10-31 06:31:45 +01:00 committed by Vincent Laporte
parent ab9b0e7092
commit 573366e267

View File

@ -1,11 +1,9 @@
{ lib, fetchFromGitHub, ncurses, ocamlPackages }:
{ lib, fetchFromGitHub, ocamlPackages }:
with ocamlPackages; buildDunePackage rec {
pname = "ocaml-top";
version = "1.2.0";
duneVersion = "3";
src = fetchFromGitHub {
owner = "OCamlPro";
repo = "ocaml-top";
@ -13,13 +11,7 @@ with ocamlPackages; buildDunePackage rec {
hash = "sha256-xmPGGB/zUpfeAxUIhR1PhfoESAJq7sTpqHuf++EH3Lw=";
};
nativeBuildInputs = [ ocp-build ];
buildInputs = [ ncurses lablgtk3-sourceview3 ocp-index ];
configurePhase = ''
export TERM=xterm
ocp-build -init
'';
buildInputs = [ lablgtk3-sourceview3 ocp-index ];
meta = {
homepage = "https://www.typerex.org/ocaml-top.html";