about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocamline/default.nix
blob: 694988df7dc757bc8b8a2bcc600ef188fc388896 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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 ];
  };
}