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

32 lines
921 B
Nix
Raw Normal View History

{stdenv, lib, fetchurl, ocaml, pkg-config, findlib, SDL, SDL_image, SDL_mixer, SDL_ttf, SDL_gfx, lablgl }:
2013-12-05 15:20:32 +00:00
let
pname = "ocamlsdl";
in
if lib.versionAtLeast ocaml.version "4.06"
then throw "${pname} is not available for OCaml ${ocaml.version}"
else
2016-10-05 07:32:30 +00:00
stdenv.mkDerivation rec {
2013-12-05 15:20:32 +00:00
name = "${pname}-${version}";
2016-10-05 07:32:30 +00:00
version = "0.9.1";
2013-12-05 15:20:32 +00:00
src = fetchurl {
url = "mirror://sourceforge/project/ocamlsdl/OCamlSDL/ocamlsdl-0.9.1/ocamlsdl-0.9.1.tar.gz";
2013-12-05 15:20:32 +00:00
sha256 = "abfb295b263dc11e97fffdd88ea1a28b46df8cc2b196777093e4fe7f509e4f8f";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ocaml findlib SDL SDL_image SDL_mixer SDL_ttf SDL_gfx lablgl];
2013-12-05 15:20:32 +00:00
propagatedBuildInputs = [ SDL SDL_image SDL_mixer SDL_ttf SDL_gfx pkg-config ];
2013-12-05 15:20:32 +00:00
createFindlibDestdir = true;
meta = {
homepage = "http://ocamlsdl.sourceforge.net/";
2013-12-05 15:20:32 +00:00
description = "OCaml bindings for SDL 1.2";
license = lib.licenses.lgpl21;
2013-12-05 15:20:32 +00:00
};
}