Files

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

36 lines
768 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
fetchFromGitHub,
ncurses,
dune-configurator,
pkg-config,
}:
buildDunePackage rec {
pname = "curses";
version = "1.0.11";
minimalOCamlVersion = "4.06";
src = fetchFromGitHub {
owner = "mbacarella";
repo = "curses";
rev = version;
hash = "sha256-tjBOv7RARDzBShToNLL9LEaU/Syo95MfwZunFsyN4/Q=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ ncurses ];
meta = {
description = "OCaml Bindings to curses/ncurses";
homepage = "https://github.com/mbacarella/curses";
license = lib.licenses.lgpl21Plus;
changelog = "https://github.com/mbacarella/curses/raw/${version}/CHANGES";
maintainers = [ lib.maintainers.vbgl ];
};
}