diff options
author | Mark H Weaver <mhw@netris.org> | 2014-12-27 10:01:44 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-12-27 11:18:29 -0500 |
commit | 7f9b77dc465f35a3689036e12d0bf85ed7d81f52 (patch) | |
tree | 2383a6bac4f34cdd903650f8508c78f8b68adcb9 /gnu/packages/vtk.scm | |
parent | 85f41902219122824db5393dec85b1ff5f40cf29 (diff) | |
download | patches-7f9b77dc465f35a3689036e12d0bf85ed7d81f52.tar patches-7f9b77dc465f35a3689036e12d0bf85ed7d81f52.tar.gz |
gnu: vtk: Fix build with mesa-10.
* gnu/packages/patches/vtk-mesa-10.patch: New file.
* gnu-system.am (dist_patch_DATA): Add it.
* gnu/packages/vtk.scm (vtk): Add patch. Add glu to inputs.
Diffstat (limited to 'gnu/packages/vtk.scm')
-rw-r--r-- | gnu/packages/vtk.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/vtk.scm b/gnu/packages/vtk.scm index 3d30279683..17312103dd 100644 --- a/gnu/packages/vtk.scm +++ b/gnu/packages/vtk.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2014 Mark H Weaver <mhw@netris.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -21,6 +22,7 @@ #:use-module (guix download) #:use-module (guix licenses) #:use-module (guix build-system cmake) + #:use-module (gnu packages) #:use-module (gnu packages xorg) #:use-module (gnu packages gl)) @@ -36,7 +38,8 @@ "/VTK-" version ".tar.gz")) (sha256 (base32 - "0d7shccdkyj4mbh2riilslgx3gd28in4c7xpm0lxa1ln8w5g2zdx")))) + "0d7shccdkyj4mbh2riilslgx3gd28in4c7xpm0lxa1ln8w5g2zdx")) + (patches (list (search-patch "vtk-mesa-10.patch"))))) (build-system cmake-build-system) (arguments ;; Build without '-g' to save space. @@ -46,7 +49,8 @@ `(("libXt" ,libxt) ("xproto" ,xproto) ("libX11" ,libx11) - ("mesa" ,mesa))) + ("mesa" ,mesa) + ("glu" ,glu))) (home-page "http://www.vtk.org/") (synopsis "Libraries for 3D computer graphics") (description |