aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/science/misc/gplates/default.nix
blob: 4bef967bc08a5c926210156b8dba65aa225319bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchurl, qt4, qwt6_qt4, libGLU, libGL, glew, gdal, cgal
, proj, boost, cmake, python2, doxygen, graphviz, gmp, mpfr }:

stdenv.mkDerivation rec {
  pname = "gplates";
  version = "2.2.0";

  src = fetchurl {
    url = "mirror://sourceforge/gplates/${pname}-${version}-unixsrc.tar.bz2";
    sha256 = "1jrcv498vpcs8xklhbsgg12yfa90f96p2mwq6x5sjnrlpf8mh50b";
  };

  buildInputs = [
    qt4 qwt6_qt4 libGLU libGL glew gdal cgal proj cmake python2
    doxygen graphviz gmp mpfr
    (boost.override {
      enablePython = true;
      python = python2;
    })
  ];

  NIX_CFLAGS_LINK="-ldl -lpthread -lutil";

  meta = with stdenv.lib; {
    description = "Desktop software for the interactive visualisation of plate-tectonics";
    homepage = "https://www.gplates.org";
    license = licenses.gpl2;
    platforms = platforms.all;
  };
}