2021-07-27 12:37:29 -04:00

11 lines
256 B
Nix
Executable File

{ pkgs ? import <nixpkgs> {} }:
let stdenv = pkgs.stdenv;
in stdenv.mkDerivation rec {
name = "cgal_scratch";
buildInputs = with pkgs; [ cgal boost gmp mpfr ];
}
# g++ -lCGAL -lmpfr -lgmp mesh_an_implicit_function.cpp -o mesh_an_implicit_function.o