3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/math/glsurf/default.nix

32 lines
918 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ocamlPackages, libGLU, libGL, freeglut, giflib
, libmysqlclient, mpfr, gmp, libtiff, libjpeg, libpng
2017-06-26 18:24:33 +01:00
}:
2013-06-16 21:27:14 +01:00
stdenv.mkDerivation {
2017-06-26 18:24:33 +01:00
name = "glsurf-3.3.1";
2013-06-16 21:27:14 +01:00
2017-06-26 18:24:33 +01:00
src = fetchurl {
url = "https://raffalli.eu/~christophe/glsurf/glsurf-3.3.1.tar.gz";
2017-06-26 18:24:33 +01:00
sha256 = "0w8xxfnw2snflz8wdr2ca9f5g91w5vbyp1hwlx1v7vg83d4bwqs7";
2013-06-16 21:27:14 +01:00
};
buildInputs = [ freeglut libGLU libGL libmysqlclient mpfr giflib gmp
libtiff libjpeg libpng ]
2017-06-26 18:24:33 +01:00
++ (with ocamlPackages; [
ocaml findlib ocaml_mysql lablgl camlimages_4_1_2 mlgmpidl
2017-06-26 18:24:33 +01:00
]);
2013-06-16 21:27:14 +01:00
installPhase = ''
mkdir -p $out/bin $out/share/doc/glsurf
cp ./src/glsurf.opt $out/bin/glsurf
cp ./doc/doc.pdf $out/share/doc/glsurf
cp -r ./examples $out/share/doc/glsurf
'';
meta = {
homepage = "https://raffalli.eu/~christophe/glsurf/";
description = "A program to draw implicit surfaces and curves";
2021-01-15 13:21:58 +00:00
license = lib.licenses.lgpl21;
2013-06-16 21:27:14 +01:00
};
}