Commit f99963cb authored by Vincent Tourneur's avatar Vincent Tourneur Committed by Vincent Laporte
Browse files

ocamlPackages.readline: 0.1 -> 0.2

Add myself as a maintainer.

(cherry picked from commit b67fbd84)
parent 7060e0d3
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -25091,6 +25091,12 @@
    github = "totoroot";
    githubId = 39650930;
  };
  tournev = {
    name = "Vincent Tourneur";
    email = "vincent@pimoid.fr";
    github = "vtourneur";
    githubId = 48284424;
  };
  ToxicFrog = {
    email = "toxicfrog@ancilla.ca";
    github = "ToxicFrog";
+7 −7
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@

buildDunePackage {
  pname = "readline";
  version = "0.1";
  version = "0.2";

  minimalOCamlVersion = "4.14";

  src = fetchFromGitLab {
    domain = "gitlab.inria.fr";
    owner = "vtourneu";
    repo = "readline-ocaml";
    rev = "b3f84c8a006439142884d3e0df51b395d963f9fe";
    hash = "sha256-h4kGbzwM88rPGj/KkHKgGyfyvkAYHP83ZY1INZzTaIE=";
    owner = "acg";
    repo = "dev/readline-ocaml";
    tag = "v0.2";
    hash = "sha256-qWxciodgINCFCxAVLdoU4z+ypWPYjrUwq8pU80saclw=";
  };

  patches = [ ./dune.patch ];
@@ -30,8 +30,8 @@ buildDunePackage {

  meta = {
    description = "OCaml bindings for GNU Readline";
    homepage = "https://vtourneu.gitlabpages.inria.fr/readline-ocaml/readline/index.html";
    homepage = "https://acg.gitlabpages.inria.fr/dev/readline-ocaml/readline/index.html";
    license = lib.licenses.cecill20;
    maintainers = [ lib.maintainers.vbgl ];
    maintainers = [ lib.maintainers.tournev ];
  };
}