30 lines
886 B
Nix
30 lines
886 B
Nix
{ stdenv, fetchurl, ocamlPackages, libGLU_combined, freeglut
|
|
, mysql, mpfr, gmp, libtiff, libjpeg, libpng, giflib
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "glsurf-3.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://lama.univ-savoie.fr/~raffalli/glsurf/glsurf-3.3.1.tar.gz";
|
|
sha256 = "0w8xxfnw2snflz8wdr2ca9f5g91w5vbyp1hwlx1v7vg83d4bwqs7";
|
|
};
|
|
|
|
buildInputs = [ freeglut libGLU_combined mysql.connector-c mpfr gmp
|
|
libtiff libjpeg libpng giflib ]
|
|
++ (with ocamlPackages; [
|
|
ocaml findlib ocaml_mysql lablgl camlimages_4_0 mlgmpidl
|
|
]);
|
|
|
|
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";
|
|
};
|
|
}
|