nixpkgs/pkgs/development/ocaml-modules/ocamline/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
545 B
Nix
Raw Normal View History

2022-10-27 06:55:58 +00:00
{ buildDunePackage, linenoise, fetchFromGitHub, lib }:
buildDunePackage rec {
pname = "ocamline";
version = "1.2";
src = fetchFromGitHub {
owner = "chrisnevers";
repo = pname;
rev = version;
sha256 = "Sljm/Bfr2Eo0d75tmJRuWUkkfHUYQ0g27+FzXBePnVg=";
};
propagatedBuildInputs = [ linenoise ];
meta = with lib; {
homepage = "https://chrisnevers.github.io/ocamline/";
description = "Command line interface for user input";
license = licenses.bsd3;
maintainers = with maintainers; [ mgttlinger ];
};
}