ocamlPackages.gtktop: remove at 2.0

This commit is contained in:
Vincent Laporte 2022-01-16 11:00:42 +01:00 committed by Vincent Laporte
parent d1bedaab45
commit 1c1b91861a
2 changed files with 0 additions and 31 deletions

View file

@ -1,29 +0,0 @@
{ stdenv, lib, fetchurl, ocaml, camlp4, findlib, lablgtk-extras }:
let pname = "gtktop-2.0"; in
if lib.versionAtLeast ocaml.version "4.06"
then throw "${pname} is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation {
name = "ocaml-${pname}";
src = fetchurl {
url = "http://zoggy.github.io/gtktop/${pname}.tar.gz";
sha256 = "0cpmnavvham9mwxknm6df90g9qxabcvn2kfwlf9mncqa0z3rknz6";
};
buildInputs = [ ocaml camlp4 findlib ];
propagatedBuildInputs = [ lablgtk-extras ];
createFindlibDestdir = true;
meta = {
homepage = "http://zoggy.github.io/gtktop/";
description = "A small OCaml library to ease the creation of graphical toplevels";
license = lib.licenses.lgpl3;
maintainers = with lib.maintainers; [ vbgl ];
platforms = ocaml.meta.platforms or [];
};
}

View file

@ -513,8 +513,6 @@ let
graphql_ppx = callPackage ../development/ocaml-modules/graphql_ppx { };
gtktop = callPackage ../development/ocaml-modules/gtktop { };
hex = callPackage ../development/ocaml-modules/hex { };
httpaf = callPackage ../development/ocaml-modules/httpaf { };