My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/gd4o/default.nix

36 lines
880 B

{ lib, stdenv, fetchurl, ocaml, gd, freetype, findlib, zlib, libpng, libjpeg }:
stdenv.mkDerivation rec {
pname = "ocaml${ocaml.version}-gd4o";
version = "1.0a5";
src = fetchurl {
url = "mirror://sourceforge/gd4o/gd4o/1.0%20Alpha%205/gd4o-1.0a5.tar.gz";
sha256 = "1vbyakz7byvxmqf3hj68rw15b4kb94ppcnhvmjv38rsyg05bc47s";
};
buildInputs = [ ocaml findlib libjpeg libpng ];
propagatedBuildInputs = [ gd zlib freetype ];
preInstall = ''
mkdir -p $OCAMLFIND_DESTDIR/stublibs
'';
buildFlags = [ "all" "opt" ];
checkPhase = ''
runHook preCheck
make test.opt
runHook postCheck
'';
doCheck = true;
meta = with lib; {
homepage = "https://sourceforge.net/projects/gd4o/";
description = "OCaml wrapper for the GD graphics library";
license = licenses.lgpl21Only;
maintainers = with maintainers; [ dandellion ];
};
}