Commit b2d53246 authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.getopt: 20120615 → 20230213

parent 3d88cc85
Loading
Loading
Loading
Loading
+12 −18
Original line number Diff line number Diff line
{ lib, fetchzip, stdenv, ocaml, findlib, ocamlbuild }:
{ lib, fetchFromGitHub, buildDunePackage }:

stdenv.mkDerivation rec {
  pname = "ocaml${ocaml.version}-getopt";
  version = "20120615";
buildDunePackage rec {
  pname = "getopt";
  version = "20230213";

  src = fetchzip {
    url = "https://download.ocamlcore.org/ocaml-getopt/ocaml-getopt/${version}/ocaml-getopt-${version}.tar.gz";
    sha256 = "0bng2mmdixpmj23xn8krlnaq66k22iclwz46r8zjrsrq3wcn1xgn";
  };

  nativeBuildInputs = [
    ocaml
    findlib
    ocamlbuild
  ];
  minimalOCamlVersion = "4.07";

  strictDeps = true;
  src = fetchFromGitHub {
    owner = "scemama";
    repo = "ocaml-getopt";
    rev = version;
    hash = "sha256-oYDm945LgjIW+8x7UrO4FlbHywnu8480aiEVvnjBxc8=";
  };

  doCheck = true;
  createFindlibDestdir = true;

  meta = {
    inherit (ocaml.meta) platforms;
    homepage = "https://github.com/gildor478/ocaml-getopt";
    homepage = "https://github.com/scemama/ocaml-getopt";
    description = "Parsing of command line arguments (similar to GNU GetOpt) for OCaml";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.ulrikstrid ];