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

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

57 lines
1.6 KiB
Nix
Raw Normal View History

2023-11-03 08:50:25 +01:00
{ lib, stdenv, fetchFromGitHub, ocaml, findlib, libGLU, libGL, freeglut, camlp-streams, darwin } :
2023-11-03 08:50:25 +01:00
if lib.versionOlder ocaml.version "4.06"
2021-11-30 17:46:07 +01:00
then throw "lablgl is not available for OCaml ${ocaml.version}"
else
2016-10-05 09:32:30 +02:00
stdenv.mkDerivation rec {
2021-11-30 17:46:07 +01:00
pname = "ocaml${ocaml.version}-lablgl";
2023-11-03 08:50:25 +01:00
version = "1.07";
2021-11-30 17:46:07 +01:00
src = fetchFromGitHub {
owner = "garrigue";
repo = "lablgl";
rev = "v${version}";
2023-11-03 08:50:25 +01:00
hash = "sha256-GiQKHMn5zHyvDrA2ve12X5YTm3/RZp8tukIqifgVaW4=";
};
strictDeps = true;
nativeBuildInputs = [ ocaml findlib ];
2023-11-03 08:50:25 +01:00
buildInputs = [ freeglut camlp-streams ];
propagatedBuildInputs = [
libGLU
libGL
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.GLUT
darwin.apple_sdk.libs.Xplugin
];
2014-10-04 00:19:32 +02:00
patches = [ ./Makefile.config.patch ./META.patch ];
preConfigure = ''
2021-11-30 17:46:07 +01:00
mkdir -p $out/bin
mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs
substituteInPlace Makefile.config \
2021-11-30 17:46:07 +01:00
--subst-var-by BINDIR $out/bin/ \
--subst-var-by INSTALLDIR $out/lib/ocaml/${ocaml.version}/site-lib/lablgl/ \
--subst-var-by DLLDIR $out/lib/ocaml/${ocaml.version}/site-lib/stublibs/ \
--subst-var-by TKINCLUDES "" \
--subst-var-by XINCLUDES ""
'';
buildFlags = [ "lib" "libopt" "glut" "glutopt" ];
postInstall = ''
2016-10-05 09:32:30 +02:00
cp ./META $out/lib/ocaml/${ocaml.version}/site-lib/lablgl
'';
meta = with lib; {
description = "OpenGL bindings for ocaml";
homepage = "http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgl.html";
2014-10-04 00:19:32 +02:00
license = licenses.gpl2;
maintainers = with maintainers; [ pSub vbgl ];
mainProgram = "lablglut";
};
}