depot/third_party/nixpkgs/pkgs/development/ocaml-modules/linenoise/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
569 B
Nix

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