Merge pull request #6839 from joelmo/master
graph-tool: enable drawing and openmp for algorithms
This commit is contained in:
commit
658bb1e68d
@ -1,4 +1,6 @@
|
|||||||
{ stdenv, fetchurl, python, cairomm, sparsehash, pycairo, automake, m4, pkgconfig, boost, expat, scipy, numpy, cgal, gmp, mpfr, lndir, makeWrapper }:
|
{ stdenv, fetchurl, python, cairomm, sparsehash, pycairo, automake, m4,
|
||||||
|
pkgconfig, boost, expat, scipy, numpy, cgal, gmp, mpfr, lndir, makeWrapper,
|
||||||
|
gobjectIntrospection, pygobject3, gtk3, matplotlib }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "2.2.36";
|
version = "2.2.36";
|
||||||
@ -20,9 +22,26 @@ stdenv.mkDerivation rec {
|
|||||||
configureFlags="--with-python-module-path=$out/${python.sitePackages}"
|
configureFlags="--with-python-module-path=$out/${python.sitePackages}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [ python cairomm pycairo sparsehash automake m4 pkgconfig makeWrapper boost expat scipy numpy cgal lndir gmp mpfr ];
|
buildInputs = [ automake m4 pkgconfig makeWrapper ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ numpy ];
|
propagatedBuildInputs = [
|
||||||
|
boost
|
||||||
|
cgal
|
||||||
|
expat
|
||||||
|
gmp
|
||||||
|
mpfr
|
||||||
|
python
|
||||||
|
scipy
|
||||||
|
# optional
|
||||||
|
sparsehash
|
||||||
|
# drawing
|
||||||
|
cairomm
|
||||||
|
gobjectIntrospection
|
||||||
|
gtk3
|
||||||
|
pycairo
|
||||||
|
matplotlib
|
||||||
|
pygobject3
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = false;
|
enableParallelBuilding = false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user