nixpkgs/pkgs/applications/science/misc/gplates/default.nix

30 lines
781 B
Nix
Raw Normal View History

2019-11-10 16:44:34 +00:00
{ stdenv, fetchurl, qt4, qwt6_qt4, libGLU, libGL, glew, gdal_1_11, cgal
, proj, boost, cmake, python2, doxygen, graphviz, gmp }:
2016-12-17 00:17:29 +00:00
stdenv.mkDerivation rec {
pname = "gplates";
2016-12-17 00:17:29 +00:00
version = "2.0.0";
src = fetchurl {
url = "mirror://sourceforge/gplates/${pname}-${version}-unixsrc.tar.bz2";
2016-12-17 00:17:29 +00:00
sha256 = "02scnjj5nlc2d2c8lbx0xvj8gg1bgkjliv3wxsx564c55a9x69qw";
};
patches = [
./boostfix.patch
];
2017-03-02 13:13:02 +00:00
buildInputs = [
2019-11-10 16:44:34 +00:00
qt4 qwt6_qt4 libGLU libGL glew gdal_1_11 cgal proj boost cmake python2
2017-03-02 13:13:02 +00:00
doxygen graphviz gmp
];
2016-12-17 00:17:29 +00:00
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;
broken = true;
2016-12-17 00:17:29 +00:00
};
}