ocamlPackages.getopt: 20120615 → 20230213

Changed files
+12 -18
pkgs
development
ocaml-modules
getopt
+12 -18
pkgs/development/ocaml-modules/getopt/default.nix
···
-
{ lib, fetchzip, stdenv, ocaml, findlib, ocamlbuild }:
-
stdenv.mkDerivation rec {
-
pname = "ocaml${ocaml.version}-getopt";
-
version = "20120615";
-
src = fetchzip {
-
url = "https://download.ocamlcore.org/ocaml-getopt/ocaml-getopt/${version}/ocaml-getopt-${version}.tar.gz";
-
sha256 = "0bng2mmdixpmj23xn8krlnaq66k22iclwz46r8zjrsrq3wcn1xgn";
-
};
-
-
nativeBuildInputs = [
-
ocaml
-
findlib
-
ocamlbuild
-
];
-
strictDeps = true;
doCheck = true;
-
createFindlibDestdir = true;
meta = {
-
inherit (ocaml.meta) platforms;
-
homepage = "https://github.com/gildor478/ocaml-getopt";
description = "Parsing of command line arguments (similar to GNU GetOpt) for OCaml";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ulrikstrid ];
···
+
{ lib, fetchFromGitHub, buildDunePackage }:
+
buildDunePackage rec {
+
pname = "getopt";
+
version = "20230213";
+
minimalOCamlVersion = "4.07";
+
src = fetchFromGitHub {
+
owner = "scemama";
+
repo = "ocaml-getopt";
+
rev = version;
+
hash = "sha256-oYDm945LgjIW+8x7UrO4FlbHywnu8480aiEVvnjBxc8=";
+
};
doCheck = true;
meta = {
+
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 ];