mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
38 lines
950 B
Nix
38 lines
950 B
Nix
{ lib, stdenv, fetchFromGitHub, ocaml, findlib, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ocaml-curses";
|
|
version = "1.0.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mbacarella";
|
|
repo = "curses";
|
|
rev = version;
|
|
sha256 = "0yy3wf8i7jgvzdc40bni7mvpkvclq97cgb5fw265mrjj0iqpkqpd";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ncurses ];
|
|
|
|
nativeBuildInputs = [ ocaml findlib ];
|
|
|
|
# Fix build for recent ncurses versions
|
|
NIX_CFLAGS_COMPILE = "-DNCURSES_INTERNALS=1";
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
postPatch = ''
|
|
substituteInPlace curses.ml --replace "pp gcc" "pp $CC"
|
|
'';
|
|
|
|
buildPhase = "make all opt";
|
|
|
|
meta = with lib; {
|
|
description = "OCaml Bindings to curses/ncurses";
|
|
homepage = "https://github.com/mbacarella/curses";
|
|
license = licenses.lgpl21Plus;
|
|
changelog = "https://github.com/mbacarella/curses/raw/${version}/CHANGES";
|
|
maintainers = [ maintainers.volth ];
|
|
inherit (ocaml.meta) platforms;
|
|
};
|
|
}
|