ocamlPackages.ocamlsdl: remove at 0.9.1

This commit is contained in:
Vincent Laporte 2023-11-03 08:50:10 +01:00 committed by Vincent Laporte
parent 782e4f664d
commit f933bfc6c8
2 changed files with 0 additions and 35 deletions

View File

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

View File

@ -1296,8 +1296,6 @@ let
ocamlscript = callPackage ../development/tools/ocaml/ocamlscript { };
ocamlsdl = callPackage ../development/ocaml-modules/ocamlsdl { };
ocb-stubblr = callPackage ../development/ocaml-modules/ocb-stubblr { };
ocf = callPackage ../development/ocaml-modules/ocf { };