nixpkgs/pkgs/applications/science/math/glsurf/default.nix

32 lines
929 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ocamlPackages, libGLU_combined, freeglut
2017-06-26 17:24:33 +00:00
, mysql, mpfr, gmp, libtiff, libjpeg, libpng, giflib
}:
2013-06-16 20:27:14 +00:00
stdenv.mkDerivation {
2017-06-26 17:24:33 +00:00
name = "glsurf-3.3.1";
2013-06-16 20:27:14 +00:00
2017-06-26 17:24:33 +00:00
src = fetchurl {
url = "https://lama.univ-savoie.fr/~raffalli/glsurf/glsurf-3.3.1.tar.gz";
2017-06-26 17:24:33 +00:00
sha256 = "0w8xxfnw2snflz8wdr2ca9f5g91w5vbyp1hwlx1v7vg83d4bwqs7";
2013-06-16 20:27:14 +00:00
};
buildInputs = [ freeglut libGLU_combined mysql.connector-c mpfr gmp
2017-06-26 17:24:33 +00:00
libtiff libjpeg libpng giflib ]
++ (with ocamlPackages; [
ocaml findlib ocaml_mysql lablgl camlimages_4_0 mlgmpidl
]);
2013-06-16 20:27:14 +00: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 = http://www.lama.univ-savoie.fr/~raffalli/glsurf;
description = "A program to draw implicit surfaces and curves";
2018-08-20 18:16:00 +00:00
license = stdenv.lib.licenses.lgpl21;
2013-06-16 20:27:14 +00:00
};
}