forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / linenoise / default.nix
blob96d00c28fce66dbc13386e949c60252a35d0704a
1 { lib, fetchFromGitHub, buildDunePackage, result }:
3 buildDunePackage rec {
4   pname = "linenoise";
5   version = "1.5.1";
7   minimalOCamlVersion = "4.03";
9   src = fetchFromGitHub {
10     owner = "fxfactorial";
11     repo = "ocaml-${pname}";
12     rev = "v${version}";
13     sha256 = "sha256-yWBWMbk1anXaF4hIakTOcRZFCYmxI0xG3bHFFOAyEDA=";
14   };
16   propagatedBuildInputs = [ result ];
18   meta = {
19     description = "OCaml bindings to linenoise";
20     license = lib.licenses.bsd3;
21     maintainers = [ lib.maintainers.vbgl ];
22     inherit (src.meta) homepage;
23   };