mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 04:45:39 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
74 lines
1.5 KiB
Nix
74 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, ocamlPackages
|
|
, makeWrapper
|
|
, libGLU
|
|
, libGL
|
|
, freeglut
|
|
, mpfr
|
|
, gmp
|
|
, pkgsHostTarget
|
|
}:
|
|
|
|
let
|
|
inherit (pkgsHostTarget.targetPackages.stdenv) cc;
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "glsurf";
|
|
version = "3.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://raffalli.eu/~christophe/glsurf/glsurf-${version}.tar.gz";
|
|
sha256 = "0w8xxfnw2snflz8wdr2ca9f5g91w5vbyp1hwlx1v7vg83d4bwqs7";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
] ++ (with ocamlPackages; [
|
|
ocaml
|
|
findlib
|
|
]);
|
|
|
|
buildInputs = [
|
|
freeglut
|
|
libGL
|
|
libGLU
|
|
mpfr
|
|
gmp
|
|
] ++ (with ocamlPackages; [
|
|
camlp4
|
|
lablgl
|
|
camlimages
|
|
num
|
|
]);
|
|
|
|
postPatch = ''
|
|
for f in callbacks*/Makefile src/Makefile; do
|
|
substituteInPlace "$f" --replace "+camlp4" \
|
|
"${ocamlPackages.camlp4}/lib/ocaml/${ocamlPackages.ocaml.version}/site-lib/camlp4"
|
|
done
|
|
|
|
# Fatal error: exception Sys_error("Mutex.unlock: Operation not permitted")
|
|
sed -i "/gl_started/d" src/draw.ml* src/main.ml
|
|
'';
|
|
|
|
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
|
|
|
|
wrapProgram "$out/bin/glsurf" --set CC "${cc}/bin/${cc.targetPrefix}cc"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://raffalli.eu/~christophe/glsurf/";
|
|
description = "A program to draw implicit surfaces and curves";
|
|
mainProgram = "glsurf";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|