depot/third_party/nixpkgs/pkgs/development/ocaml-modules/linenoise/default.nix

29 lines
560 B
Nix

{
lib,
fetchFromGitHub,
buildDunePackage,
result,
}:
buildDunePackage rec {
pname = "linenoise";
version = "1.5.1";
minimalOCamlVersion = "4.03";
src = fetchFromGitHub {
owner = "fxfactorial";
repo = "ocaml-${pname}";
rev = "v${version}";
sha256 = "sha256-yWBWMbk1anXaF4hIakTOcRZFCYmxI0xG3bHFFOAyEDA=";
};
propagatedBuildInputs = [ result ];
meta = {
description = "OCaml bindings to linenoise";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.vbgl ];
inherit (src.meta) homepage;
};
}