1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 10:31:36 +00:00
nixpkgs/pkgs/development/ocaml-modules/gg/default.nix

44 lines
1.2 KiB
Nix
Raw Normal View History

2018-05-28 06:50:12 +01:00
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opaline }:
2014-10-29 19:15:39 +00:00
let
inherit (stdenv.lib) getVersion versionAtLeast;
pname = "gg";
2015-10-12 06:54:37 +01:00
version = "0.9.1";
2014-10-29 19:15:39 +00:00
webpage = "http://erratique.ch/software/${pname}";
in
assert versionAtLeast (getVersion ocaml) "4.01.0";
stdenv.mkDerivation rec {
name = "ocaml-${pname}-${version}";
src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz";
2015-10-12 06:54:37 +01:00
sha256 = "0czj41sr8jsivl3z8wyblf9k971j3kx2wc3s0c1nhzcc8allg9i2";
2014-10-29 19:15:39 +00:00
};
2018-05-28 06:50:12 +01:00
buildInputs = [ ocaml findlib ocamlbuild opaline ];
2014-10-29 19:15:39 +00:00
createFindlibDestdir = true;
buildPhase = "ocaml pkg/build.ml native=true native-dynlink=true";
2018-05-28 06:50:12 +01:00
installPhase = "opaline -libdir $OCAMLFIND_DESTDIR";
2014-10-29 19:15:39 +00:00
meta = with stdenv.lib; {
description = "Basic types for computer graphics in OCaml";
longDescription = ''
Gg is an OCaml module providing basic types for computer graphics. It
defines types and functions for floats, vectors, points, sizes,
matrices, quaternions, axis aligned boxes, colors, color spaces, and
raster data.
'';
homepage = "${webpage}";
platforms = ocaml.meta.platforms or [];
2014-10-29 19:15:39 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.jirkamarsik ];
};
}