2015-01-16 15:47:03 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2017-04-05 09:40:08 +02:00
|
|
|
;;; Copyright © 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
2015-03-30 15:37:35 +02:00
|
|
|
;;; Copyright © 2015 Tomáš Čech <sleep_walker@gnu.org>
|
2016-02-29 08:23:43 +01:00
|
|
|
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
2017-05-24 23:23:42 +02:00
|
|
|
;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
|
2016-07-03 02:28:03 +02:00
|
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
2016-07-31 18:16:25 +02:00
|
|
|
;;; Copyright © 2016 Andreas Enge <andreas@enge.fr>
|
2017-06-04 16:46:56 +02:00
|
|
|
;;; Copyright © 2017 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
|
2015-01-16 15:47:03 +01:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages graphics)
|
|
|
|
#:use-module (guix download)
|
2017-05-24 23:23:42 +02:00
|
|
|
#:use-module (guix git-download)
|
2015-01-16 15:47:03 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (guix build-system cmake)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2015-02-25 16:52:05 +01:00
|
|
|
#:use-module (gnu packages)
|
2015-09-03 14:17:34 +02:00
|
|
|
#:use-module (gnu packages algebra)
|
|
|
|
#:use-module (gnu packages audio)
|
2015-03-18 08:57:50 +01:00
|
|
|
#:use-module (gnu packages autotools)
|
|
|
|
#:use-module (gnu packages bash)
|
2016-04-13 08:56:16 +02:00
|
|
|
#:use-module (gnu packages bison)
|
2015-03-18 08:57:50 +01:00
|
|
|
#:use-module (gnu packages boost)
|
2017-08-06 21:33:18 +02:00
|
|
|
#:use-module (gnu packages check)
|
gnu: Update module imports for asciidoc and doxygen.
This is a followup to commit 0573a923def01e54bf104e0015ade44ab42f694f.
* gnu/packages/algebra.scm, gnu/packages/bioinformatics.scm,
gnu/packages/fcitx.scm, gnu/packages/fish.scm,
gnu/packages/freedesktop.scm, gnu/packages/game-development.scm,
gnu/packages/gcc.scm, gnu/packages/graphics.scm, gnu/packages/image.scm,
gnu/packages/kodi.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/messaging.scm,
gnu/packages/mpd.scm, gnu/packages/music.scm, gnu/packages/rdf.scm,
gnu/packages/serialization.scm, gnu/packages/version-control.scm,
gnu/packages/web.scm, gnu/packages/wm.scm, gnu/packages/xdisorg.scm,
gnu/packages/xiph.scm: Change imports of (gnu packages asciidoc) or
(gnu packages doxygen) to (gnu packages documentation).
2016-05-13 02:18:15 +02:00
|
|
|
#:use-module (gnu packages documentation)
|
2016-04-13 08:56:16 +02:00
|
|
|
#:use-module (gnu packages haskell)
|
2015-09-23 09:05:15 +02:00
|
|
|
#:use-module (gnu packages image)
|
|
|
|
#:use-module (gnu packages python)
|
2016-04-13 08:56:16 +02:00
|
|
|
#:use-module (gnu packages flex)
|
2017-08-06 21:33:18 +02:00
|
|
|
#:use-module (gnu packages fonts)
|
2015-03-18 08:57:50 +01:00
|
|
|
#:use-module (gnu packages fontutils)
|
2015-02-25 16:52:05 +01:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2015-09-03 14:17:34 +02:00
|
|
|
#:use-module (gnu packages pulseaudio) ;libsndfile, libsamplerate
|
2015-02-25 16:52:05 +01:00
|
|
|
#:use-module (gnu packages compression)
|
2015-01-16 15:47:03 +01:00
|
|
|
#:use-module (gnu packages multiprecision)
|
2015-03-17 18:14:30 +01:00
|
|
|
#:use-module (gnu packages boost)
|
|
|
|
#:use-module (gnu packages gl)
|
2016-04-13 08:56:16 +02:00
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages graphviz)
|
|
|
|
#:use-module (gnu packages gtk)
|
|
|
|
#:use-module (gnu packages gnome)
|
2015-09-03 14:17:34 +02:00
|
|
|
#:use-module (gnu packages image)
|
|
|
|
#:use-module (gnu packages jemalloc)
|
|
|
|
#:use-module (gnu packages photo)
|
2017-06-04 16:46:56 +02:00
|
|
|
#:use-module (gnu packages pth)
|
2015-09-03 14:17:34 +02:00
|
|
|
#:use-module (gnu packages python)
|
2015-03-18 08:57:50 +01:00
|
|
|
#:use-module (gnu packages qt)
|
2016-04-13 08:56:16 +02:00
|
|
|
#:use-module (gnu packages readline)
|
2015-03-18 08:57:50 +01:00
|
|
|
#:use-module (gnu packages sdl)
|
2017-08-06 21:33:18 +02:00
|
|
|
#:use-module (gnu packages swig)
|
2015-09-03 14:17:34 +02:00
|
|
|
#:use-module (gnu packages video)
|
2016-04-13 08:56:16 +02:00
|
|
|
#:use-module (gnu packages xml)
|
gnu: Move contents of zip module into compression module.
* gnu/packages/zip.scm (zip, unzip, zziplib, perl-zip): Move to...
* gnu/packages/compression.scm: ...here.
* gnu/packages/zip.scm: Delete file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Unregister deleted file.
* po/packages/POTFILES.in: Unregister deleted file.
* gnu/packages/{audio, avr, bioinformatics, busybox, cdrom, ci, compression,
docbook, documentation, fonts, fpga, game-development, games, gl, gnome,
gnuzilla, graphics, guile, haskell, image, java, kodi, ldc, libreoffice,
markup, maths, mc, monitoring, music, php, pretty-print, python, scheme,
smalltalk, statistics, synergy, tex, textutils, video, web-browsers, xml,
zip}.scm, guix/build-system/{ant, font}.scm, guix/{download, packages}.scm:
Adapt module import.
2017-06-12 20:40:01 +02:00
|
|
|
#:use-module (gnu packages xorg))
|
2015-01-16 15:47:03 +01:00
|
|
|
|
2015-09-03 14:17:34 +02:00
|
|
|
(define-public blender
|
|
|
|
(package
|
|
|
|
(name "blender")
|
2016-10-27 05:06:46 +02:00
|
|
|
(version "2.78a")
|
2015-09-03 14:17:34 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://download.blender.org/source/"
|
|
|
|
"blender-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-10-27 05:06:46 +02:00
|
|
|
"1byf1klrvm8fdw2libx7wldz2i6lblp9nih6y58ydh00paqi8jh1"))))
|
2015-09-03 14:17:34 +02:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
`(;; Test files are very large and not included in the release tarball.
|
|
|
|
#:tests? #f
|
|
|
|
#:configure-flags
|
|
|
|
(list "-DWITH_CODEC_FFMPEG=ON"
|
|
|
|
"-DWITH_CODEC_SNDFILE=ON"
|
|
|
|
"-DWITH_CYCLES=ON"
|
|
|
|
"-DWITH_DOC_MANPAGE=ON"
|
|
|
|
"-DWITH_FFTW3=ON"
|
|
|
|
"-DWITH_GAMEENGINE=ON"
|
|
|
|
"-DWITH_IMAGE_OPENJPEG=ON"
|
|
|
|
"-DWITH_INPUT_NDOF=ON"
|
|
|
|
"-DWITH_INSTALL_PORTABLE=OFF"
|
|
|
|
"-DWITH_JACK=ON"
|
|
|
|
"-DWITH_MOD_OCEANSIM=ON"
|
|
|
|
"-DWITH_PLAYER=ON"
|
|
|
|
"-DWITH_PYTHON_INSTALL=OFF"
|
|
|
|
"-DWITH_SYSTEM_OPENJPEG=ON")
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'fix-broken-import
|
|
|
|
(lambda _
|
|
|
|
(substitute* "release/scripts/addons/io_scene_fbx/json2fbx.py"
|
|
|
|
(("import encode_bin") "from . import encode_bin"))
|
|
|
|
#t))
|
|
|
|
(add-after 'set-paths 'add-ilmbase-include-path
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
;; OpenEXR propagates ilmbase, but its include files do not appear
|
|
|
|
;; in the CPATH, so we need to add "$ilmbase/include/OpenEXR/" to
|
|
|
|
;; the CPATH to satisfy the dependency on "half.h".
|
|
|
|
(setenv "CPATH"
|
|
|
|
(string-append (assoc-ref inputs "ilmbase")
|
|
|
|
"/include/OpenEXR"
|
|
|
|
":" (or (getenv "CPATH") "")))
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
|
|
|
`(("boost" ,boost)
|
|
|
|
("jemalloc" ,jemalloc)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("openimageio" ,openimageio)
|
|
|
|
("openexr" ,openexr)
|
|
|
|
("ilmbase" ,ilmbase)
|
|
|
|
("openjpeg" ,openjpeg-1)
|
|
|
|
("libjpeg" ,libjpeg)
|
|
|
|
("libpng" ,libpng)
|
|
|
|
("libtiff" ,libtiff)
|
2016-04-27 14:15:46 +02:00
|
|
|
("ffmpeg-2.8" ,ffmpeg-2.8) ;<https://lists.gnu.org/archive/html/guix-devel/2016-04/msg01019.html>
|
2015-09-03 14:17:34 +02:00
|
|
|
("fftw" ,fftw)
|
|
|
|
("jack" ,jack-1)
|
|
|
|
("libsndfile" ,libsndfile)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("glew" ,glew)
|
|
|
|
("openal" ,openal)
|
|
|
|
("python" ,python-wrapper)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(home-page "http://blender.org/")
|
|
|
|
(synopsis "3D graphics creation suite")
|
|
|
|
(description
|
|
|
|
"Blender is a 3D graphics creation suite. It supports the entirety of
|
|
|
|
the 3D pipeline—modeling, rigging, animation, simulation, rendering,
|
|
|
|
compositing and motion tracking, even video editing and game creation. The
|
|
|
|
application can be customized via its API for Python scripting.")
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
2016-09-14 11:22:20 +02:00
|
|
|
(define-public assimp
|
|
|
|
(package
|
|
|
|
(name "assimp")
|
2016-10-15 22:11:01 +02:00
|
|
|
(version "3.3.1")
|
2016-09-14 11:22:20 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/assimp/assimp/archive/v"
|
2016-10-15 22:11:01 +02:00
|
|
|
version ".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
2016-09-14 11:22:20 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-10-15 22:11:01 +02:00
|
|
|
"1gy7zlgkf4nmyv8n674p3f30asis0gjz8icyy11i693n13ww71fk"))))
|
2016-09-14 11:22:20 +02:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("zlib" ,zlib)))
|
|
|
|
(home-page "http://assimp.org/")
|
|
|
|
(synopsis "Asset import library")
|
|
|
|
(description
|
|
|
|
"The Open Asset Import Library loads more than 40 3D file formats into
|
|
|
|
one unified data structure. Additionally, assimp features various mesh post
|
|
|
|
processing tools: normals and tangent space generation, triangulation, vertex
|
|
|
|
cache locality optimization, removal of degenerate primitives and duplicate
|
|
|
|
vertices, sorting by primitive type, merging of redundant materials and many
|
|
|
|
more.")
|
|
|
|
(license license:bsd-3)))
|
|
|
|
|
2015-01-16 15:47:03 +01:00
|
|
|
(define-public cgal
|
|
|
|
(package
|
|
|
|
(name "cgal")
|
2016-07-03 02:28:03 +02:00
|
|
|
(version "4.8.1")
|
2015-01-16 15:47:03 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2016-07-03 02:28:03 +02:00
|
|
|
"https://github.com/CGAL/cgal/releases/download/releases/"
|
|
|
|
"CGAL-" version "/CGAL-" version ".tar.xz"))
|
2015-01-16 15:47:03 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-07-03 02:28:03 +02:00
|
|
|
"1c41yzl2jg3d6zx5k0iccwqwibp950q7dr7z7pp4xi9wlph3c87s"))))
|
2015-01-16 15:47:03 +01:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
'(;; "RelWithDebInfo" is not supported.
|
|
|
|
#:build-type "Release"
|
|
|
|
|
|
|
|
;; No 'test' target.
|
|
|
|
#:tests? #f))
|
|
|
|
(inputs
|
|
|
|
`(("mpfr" ,mpfr)
|
|
|
|
("gmp" ,gmp)
|
|
|
|
("boost" ,boost)))
|
|
|
|
(home-page "http://cgal.org/")
|
|
|
|
(synopsis "Computational geometry algorithms library")
|
|
|
|
(description
|
|
|
|
"CGAL provides easy access to efficient and reliable geometric algorithms
|
|
|
|
in the form of a C++ library. CGAL is used in various areas needing geometric
|
|
|
|
computation, such as: computer graphics, scientific visualization, computer
|
|
|
|
aided design and modeling, geographic information systems, molecular biology,
|
|
|
|
medical imaging, robotics and motion planning, mesh generation, numerical
|
|
|
|
methods, etc. It provides data structures and algorithms such as
|
|
|
|
triangulations, Voronoi diagrams, polygons, polyhedra, mesh generation, and
|
|
|
|
many more.")
|
|
|
|
|
|
|
|
;; The 'LICENSE' file explains that a subset is available under more
|
|
|
|
;; permissive licenses.
|
|
|
|
(license license:gpl3+)))
|
2015-02-25 16:52:05 +01:00
|
|
|
|
|
|
|
(define-public ilmbase
|
|
|
|
(package
|
|
|
|
(name "ilmbase")
|
|
|
|
(version "2.2.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://savannah/openexr/ilmbase-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-02-29 08:23:43 +01:00
|
|
|
"1izddjwbh1grs8080vmaix72z469qy29wrvkphgmqmcm0sv1by7c"))
|
2016-04-08 14:18:13 +02:00
|
|
|
(patches (search-patches "ilmbase-fix-tests.patch"))))
|
2015-02-25 16:52:05 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page "http://www.openexr.com/")
|
|
|
|
(synopsis "Utility C++ libraries for threads, maths, and exceptions")
|
|
|
|
(description
|
|
|
|
"IlmBase provides several utility libraries for C++. Half is a class
|
|
|
|
that encapsulates ILM's 16-bit floating-point format. IlmThread is a thread
|
|
|
|
abstraction. Imath implements 2D and 3D vectors, 3x3 and 4x4 matrices,
|
|
|
|
quaternions and other useful 2D and 3D math functions. Iex is an
|
|
|
|
exception-handling library.")
|
|
|
|
(license license:bsd-3)))
|
|
|
|
|
2017-08-06 21:33:18 +02:00
|
|
|
(define-public ogre
|
|
|
|
(package
|
|
|
|
(name "ogre")
|
|
|
|
(version "1.10.7")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/OGRECave/" name
|
|
|
|
"/archive/v" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1ab354bmwwryxr4zgxchfkm6h4z38mjgif8yn89x640rsrgw5ipj"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'pre-configure
|
|
|
|
(lambda _
|
|
|
|
;; It expects googletest source to be downloaded and
|
|
|
|
;; be in a specific place.
|
|
|
|
(substitute* "Tests/CMakeLists.txt"
|
|
|
|
(("URL(.*)$" _ suffix)
|
|
|
|
(string-append "URL " suffix
|
|
|
|
"\t\tURL_HASH "
|
|
|
|
"MD5=16877098823401d1bf2ed7891d7dce36\n")))
|
|
|
|
#t))
|
|
|
|
(add-before 'build 'pre-build
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(copy-file (assoc-ref inputs "googletest-source")
|
|
|
|
(string-append (getcwd)
|
|
|
|
"/Tests/googletest-prefix/src/"
|
|
|
|
"release-1.8.0.tar.gz"))
|
|
|
|
#t)))
|
|
|
|
#:configure-flags
|
|
|
|
(list "-DOGRE_BUILD_TESTS=TRUE"
|
|
|
|
(string-append "-DCMAKE_INSTALL_RPATH="
|
|
|
|
(assoc-ref %outputs "out") "/lib:"
|
|
|
|
(assoc-ref %outputs "out") "/lib/OGRE:"
|
|
|
|
(assoc-ref %build-inputs "googletest") "/lib")
|
|
|
|
"-DOGRE_INSTALL_DOCS=TRUE"
|
|
|
|
"-DOGRE_INSTALL_SAMPLES=TRUE"
|
|
|
|
"-DOGRE_INSTALL_SAMPLES_SOURCE=TRUE")))
|
|
|
|
(native-inputs
|
|
|
|
`(("boost" ,boost)
|
|
|
|
("doxygen" ,doxygen)
|
|
|
|
("googletest-source" ,(package-source googletest))
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("font-dejavu" ,font-dejavu)
|
|
|
|
("freeimage" ,freeimage)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("glu" ,glu)
|
|
|
|
("googletest" ,googletest)
|
|
|
|
("sdl2" ,sdl2)
|
|
|
|
("libxaw" ,libxaw)
|
|
|
|
("libxrandr" ,libxrandr)
|
|
|
|
("tinyxml" ,tinyxml)
|
|
|
|
("zziplib" ,zziplib)))
|
|
|
|
(synopsis "Scene-oriented, flexible 3D engine written in C++")
|
|
|
|
(description
|
|
|
|
"OGRE (Object-Oriented Graphics Rendering Engine) is a scene-oriented,
|
|
|
|
flexible 3D engine written in C++ designed to make it easier and more intuitive
|
|
|
|
for developers to produce applications utilising hardware-accelerated 3D
|
|
|
|
graphics.")
|
|
|
|
(home-page "http://www.ogre3d.org/")
|
|
|
|
(license license:expat)))
|
|
|
|
|
2015-02-25 16:52:05 +01:00
|
|
|
(define-public openexr
|
|
|
|
(package
|
|
|
|
(name "openexr")
|
|
|
|
(version "2.2.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://savannah/openexr/openexr-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0ca2j526n4wlamrxb85y2jrgcv0gf21b3a19rr0gh4rjqkv1581n"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
2016-06-28 14:35:47 +02:00
|
|
|
'(begin
|
|
|
|
(substitute* (find-files "." "tmpDir\\.h")
|
|
|
|
(("\"/var/tmp/\"")
|
|
|
|
"\"/tmp/\""))
|
|
|
|
|
|
|
|
;; Install 'ImfStdIO.h'. Reported at
|
|
|
|
;; <https://lists.nongnu.org/archive/html/openexr-devel/2016-06/msg00001.html>
|
|
|
|
;; and <https://github.com/openexr/openexr/pull/184>.
|
|
|
|
(substitute* "IlmImf/Makefile.in"
|
|
|
|
(("ImfIO\\.h")
|
|
|
|
"ImfIO.h ImfStdIO.h"))))
|
2016-04-08 14:18:13 +02:00
|
|
|
(patches (search-patches "openexr-missing-samples.patch"))))
|
2015-02-25 16:52:05 +01:00
|
|
|
(build-system gnu-build-system)
|
2016-03-10 21:03:19 +01:00
|
|
|
(arguments
|
|
|
|
'(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'disable-broken-test
|
|
|
|
;; This test fails on i686. Upstream developers suggest that
|
|
|
|
;; this test is broken on i686 and can be safely disabled:
|
|
|
|
;; https://github.com/openexr/openexr/issues/67#issuecomment-21169748
|
|
|
|
(lambda _
|
|
|
|
(substitute* "IlmImfTest/main.cpp"
|
|
|
|
(("#include \"testOptimizedInterleavePatterns.h\"")
|
|
|
|
"//#include \"testOptimizedInterleavePatterns.h\"")
|
|
|
|
(("TEST \\(testOptimizedInterleavePatterns")
|
|
|
|
"//TEST (testOptimizedInterleavePatterns"))
|
|
|
|
#t)))))
|
2015-02-25 16:52:05 +01:00
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("ilmbase" ,ilmbase) ;used in public headers
|
|
|
|
("zlib" ,zlib))) ;OpenEXR.pc reads "-lz"
|
|
|
|
(home-page "http://www.openexr.com")
|
2015-02-26 10:05:05 +01:00
|
|
|
(synopsis "High-dynamic range file format library")
|
2015-02-25 16:52:05 +01:00
|
|
|
(description
|
|
|
|
"OpenEXR is a high dynamic-range (HDR) image file format developed for
|
2015-02-26 10:05:05 +01:00
|
|
|
use in computer imaging applications. The IlmImf C++ libraries support
|
|
|
|
storage of the \"EXR\" file format for storing 16-bit floating-point images.")
|
2015-02-25 16:52:05 +01:00
|
|
|
(license license:bsd-3)))
|
2015-02-25 16:58:19 +01:00
|
|
|
|
2015-09-05 12:34:09 +02:00
|
|
|
(define-public openimageio
|
|
|
|
(package
|
|
|
|
(name "openimageio")
|
2016-07-03 05:44:49 +02:00
|
|
|
(version "1.6.15")
|
2015-09-05 12:34:09 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/OpenImageIO/oiio/"
|
|
|
|
"archive/Release-" version ".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-07-03 05:44:49 +02:00
|
|
|
"144crq0205d0w5aq4iglh2rhzf54a8rv3pksy6d533b75w5d7rq7"))))
|
2015-09-05 12:34:09 +02:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
;; FIXME: To run all tests successfully, test image sets from multiple
|
|
|
|
;; third party sources have to be present. For details see
|
|
|
|
;; https://github.com/OpenImageIO/oiio/blob/master/INSTALL
|
|
|
|
(arguments `(#:tests? #f))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("boost" ,boost)
|
|
|
|
("libpng" ,libpng)
|
|
|
|
("libjpeg" ,libjpeg-8)
|
|
|
|
("libtiff" ,libtiff)
|
|
|
|
("giflib" ,giflib)
|
|
|
|
("openexr" ,openexr)
|
|
|
|
("ilmbase" ,ilmbase)
|
|
|
|
("python" ,python-2)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(synopsis "C++ library for reading and writing images")
|
|
|
|
(description
|
|
|
|
"OpenImageIO is a library for reading and writing images, and a bunch of
|
|
|
|
related classes, utilities, and applications. There is a particular emphasis
|
|
|
|
on formats and functionality used in professional, large-scale animation and
|
|
|
|
visual effects work for film.")
|
|
|
|
(home-page "http://www.openimageio.org")
|
|
|
|
(license license:bsd-3)))
|
|
|
|
|
2017-06-04 16:46:56 +02:00
|
|
|
(define-public openscenegraph
|
|
|
|
(package
|
|
|
|
(name "openscenegraph")
|
|
|
|
(version "3.4.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://trac.openscenegraph.org/downloads/developer_releases/"
|
|
|
|
"OpenSceneGraph-" version ".zip"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"03h4wfqqk7rf3mpz0sa99gy715cwpala7964z2npd8jxfn27swjw"))
|
|
|
|
(patches (search-patches "openscenegraph-ffmpeg3.patch"))
|
|
|
|
(file-name (string-append name "-" version ".zip"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ;; No test target available.
|
|
|
|
#:configure-flags
|
|
|
|
(list (string-append "-DCMAKE_INSTALL_RPATH="
|
|
|
|
(assoc-ref %outputs "out") "/lib:"
|
2017-08-02 19:32:22 +02:00
|
|
|
(assoc-ref %outputs "out") "/lib64")
|
|
|
|
;; We need to set this flag or otherwise 'rd' will be added
|
|
|
|
;; to the name of the library binaries and break linking
|
|
|
|
;; with other programs.
|
|
|
|
"-DCMAKE_BUILD_TYPE=Release")))
|
2017-06-04 16:46:56 +02:00
|
|
|
(native-inputs
|
|
|
|
`(("unzip" ,unzip)))
|
|
|
|
(inputs
|
|
|
|
`(("giflib", giflib)
|
|
|
|
("jasper", jasper)
|
|
|
|
("librsvg", librsvg)
|
|
|
|
("pth", pth)
|
|
|
|
("qtbase", qtbase)
|
|
|
|
("ffmpeg", ffmpeg)
|
|
|
|
("mesa", mesa)))
|
|
|
|
(synopsis "High performance real-time graphics toolkit")
|
|
|
|
(description
|
2017-06-05 11:46:41 +02:00
|
|
|
"The OpenSceneGraph is a high performance 3D graphics toolkit
|
2017-06-04 16:46:56 +02:00
|
|
|
used by application developers in fields such as visual simulation, games,
|
2017-06-05 11:46:41 +02:00
|
|
|
virtual reality, scientific visualization and modeling.")
|
2017-06-04 16:46:56 +02:00
|
|
|
(home-page "http://www.openscenegraph.org")
|
|
|
|
;; The 'LICENSE' file explains that the source is licensed under
|
|
|
|
;; LGPL 2.1, but with 4 exceptions. This version is called OSGPL.
|
|
|
|
(license license:lgpl2.1)))
|
|
|
|
|
2016-04-13 08:56:16 +02:00
|
|
|
(define-public rapicorn
|
|
|
|
(package
|
|
|
|
(name "rapicorn")
|
|
|
|
(version "16.0.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://testbit.eu/pub/dists/rapicorn/"
|
|
|
|
"rapicorn-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-07-31 18:16:25 +02:00
|
|
|
"1y51yjrpsihas1jy905m9p3r8iiyhq6bwi2690c564i5dnix1f9d"))
|
|
|
|
(patches (search-patches "rapicorn-isnan.patch"))))
|
2016-04-13 08:56:16 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2016-05-15 13:08:20 +02:00
|
|
|
`(#:phases
|
2016-04-13 08:56:16 +02:00
|
|
|
(modify-phases %standard-phases
|
2016-05-15 13:08:20 +02:00
|
|
|
(add-after 'unpack 'fix-tests
|
|
|
|
(lambda _
|
|
|
|
;; Our grep does not support perl regular expressions.
|
|
|
|
(substitute* "taptool.sh"
|
|
|
|
(("grep -P") "grep -E"))
|
|
|
|
;; Disable path tests because we cannot access /bin or /sbin.
|
|
|
|
(substitute* "rcore/tests/multitest.cc"
|
|
|
|
(("TCMP \\(Path::equals \\(\"/bin\"") "//"))
|
|
|
|
#t))
|
|
|
|
(add-before 'check 'pre-check
|
|
|
|
(lambda _
|
|
|
|
;; The test suite requires a running X server (with DISPLAY
|
|
|
|
;; number 99 or higher).
|
|
|
|
(system "Xvfb :99 &")
|
|
|
|
(setenv "DISPLAY" ":99")
|
|
|
|
#t))
|
|
|
|
(add-after 'unpack 'replace-fhs-paths
|
2016-04-13 08:56:16 +02:00
|
|
|
(lambda _
|
|
|
|
(substitute* (cons "Makefile.decl"
|
|
|
|
(find-files "." "^Makefile\\.in$"))
|
2016-05-15 13:08:20 +02:00
|
|
|
(("/bin/ls") (which "ls"))
|
|
|
|
(("/usr/bin/env") (which "env")))
|
2016-04-13 08:56:16 +02:00
|
|
|
#t)))))
|
|
|
|
;; These libraries are listed in the "Required" section of the pkg-config
|
|
|
|
;; file.
|
|
|
|
(propagated-inputs
|
|
|
|
`(("librsvg" ,librsvg)
|
|
|
|
("cairo" ,cairo)
|
|
|
|
("pango" ,pango)
|
2016-05-15 13:08:20 +02:00
|
|
|
("libxml2" ,libxml2)
|
|
|
|
("python2-enum34" ,python2-enum34)))
|
2016-04-13 08:56:16 +02:00
|
|
|
(inputs
|
|
|
|
`(("gdk-pixbuf" ,gdk-pixbuf)
|
|
|
|
("libpng" ,libpng-1.2)
|
|
|
|
("readline" ,readline)
|
|
|
|
("libcroco" ,libcroco)
|
|
|
|
("python" ,python-2)
|
|
|
|
("cython" ,python2-cython)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pandoc" ,ghc-pandoc)
|
|
|
|
("bison" ,bison)
|
|
|
|
("flex" ,flex)
|
|
|
|
("doxygen" ,doxygen)
|
|
|
|
("graphviz" ,graphviz)
|
|
|
|
("intltool" ,intltool)
|
2016-05-15 13:08:20 +02:00
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
("xvfb" ,xorg-server)))
|
2016-04-13 08:56:16 +02:00
|
|
|
(home-page "http://rapicorn.org")
|
|
|
|
(synopsis "Toolkit for rapid development of user interfaces")
|
|
|
|
(description
|
|
|
|
"Rapicorn is a toolkit for rapid development of user interfaces in C++
|
|
|
|
and Python. The user interface is designed in a declarative markup language
|
|
|
|
and is connected to the programming logic using data bindings and commands.")
|
|
|
|
(license license:mpl2.0)))
|
|
|
|
|
2015-02-25 16:58:19 +01:00
|
|
|
(define-public ctl
|
|
|
|
(package
|
|
|
|
(name "ctl")
|
|
|
|
(version "1.5.2")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/ampas/CTL/archive/ctl-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1gg04pyvw0m398akn0s1l07g5b1haqv5na1wpi5dii1jjd1w3ynp"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments '(#:tests? #f)) ;no 'test' target
|
|
|
|
|
|
|
|
;; Headers include OpenEXR and IlmBase headers.
|
|
|
|
(propagated-inputs `(("openexr" ,openexr)))
|
|
|
|
|
|
|
|
(home-page "http://ampasctl.sourceforge.net")
|
|
|
|
(synopsis "Color Transformation Language")
|
|
|
|
(description
|
|
|
|
"The Color Transformation Language, or CTL, is a small programming
|
|
|
|
language that was designed to serve as a building block for digital color
|
|
|
|
management systems. CTL allows users to describe color transforms in a
|
|
|
|
concise and unambiguous way by expressing them as programs. In order to apply
|
|
|
|
a given transform to an image, the color management system instructs a CTL
|
|
|
|
interpreter to load and run the CTL program that describes the transform. The
|
|
|
|
original and the transformed image constitute the CTL program's input and
|
|
|
|
output.")
|
|
|
|
|
|
|
|
;; The web site says it's under a BSD-3 license, but the 'LICENSE' file
|
|
|
|
;; and headers use different wording.
|
gnu: Update packages to use 'non-copyleft' instead of 'bsd-style'.
* gnu/packages/avr.scm, gnu/packages/compression.scm,
gnu/packages/curl.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/databases.scm, gnu/packages/firmware.scm,
gnu/packages/flex.scm, gnu/packages/fontutils.scm,
gnu/packages/gd.scm, gnu/packages/ghostscript.scm,
gnu/packages/gnunet.scm, gnu/packages/graphics.scm,
gnu/packages/hugs.scm, gnu/packages/image.scm,
gnu/packages/linux.scm, gnu/packages/mail.scm,
gnu/packages/maths.scm, gnu/packages/mit-krb5.scm,
gnu/packages/python.scm, gnu/packages/rdf.scm,
gnu/packages/ssh.scm, gnu/packages/tcl.scm,
gnu/packages/xdisorg.scm, gnu/packages/xiph.scm,
gnu/packages/yasm.scm, gnu/packages/zip.scm: Use 'non-copyleft'
instead of 'bsd-style'.
2015-03-14 19:26:34 +01:00
|
|
|
(license (license:non-copyleft "file://LICENSE"))))
|
2015-03-17 18:14:30 +01:00
|
|
|
|
|
|
|
(define-public brdf-explorer
|
2017-05-24 23:23:42 +02:00
|
|
|
;; There are no release tarballs, and not even tags in the repo,
|
|
|
|
;; so use the latest revision.
|
|
|
|
(let ((commit "5b2cd46f38a06e47207fa7229b72d37beb945019")
|
|
|
|
(revision "1"))
|
|
|
|
(package
|
|
|
|
(name "brdf-explorer")
|
|
|
|
(version (string-append "1.0.0-" revision "." (string-take commit 9)))
|
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/wdas/brdf.git")
|
|
|
|
(commit commit)))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"06vzbiajzbi2xl8jlff5d45bc9wd68i3jdndfab1f3jgfrd8bsgx"))
|
|
|
|
(file-name (string-append name "-" version "-checkout"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:phases (modify-phases %standard-phases
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(zero? (system* "qmake"
|
|
|
|
(string-append "prefix=" out))))))
|
|
|
|
(add-after 'install 'wrap-program
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin"))
|
|
|
|
(data (string-append
|
|
|
|
out "/share/brdf")))
|
|
|
|
(with-directory-excursion bin
|
|
|
|
(rename-file "brdf" ".brdf-real")
|
|
|
|
(call-with-output-file "brdf"
|
|
|
|
(lambda (port)
|
|
|
|
(format port "#!/bin/sh
|
2015-03-17 18:14:30 +01:00
|
|
|
# Run the thing from its home, otherwise it just bails out.
|
|
|
|
cd \"~a\"
|
|
|
|
exec -a \"$0\" ~a/.brdf-real~%"
|
2017-05-24 23:23:42 +02:00
|
|
|
data bin)))
|
|
|
|
(chmod "brdf" #o555))))))))
|
|
|
|
(native-inputs
|
|
|
|
`(("qttools" ,qttools))) ;for 'qmake'
|
|
|
|
(inputs
|
|
|
|
`(("qtbase" ,qtbase)
|
|
|
|
("mesa" ,mesa)
|
|
|
|
("glew" ,glew)
|
|
|
|
("freeglut" ,freeglut)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(home-page "http://www.disneyanimation.com/technology/brdf.html")
|
|
|
|
(synopsis
|
|
|
|
"Analyze bidirectional reflectance distribution functions (BRDFs)")
|
|
|
|
(description
|
|
|
|
"BRDF Explorer is an application that allows the development and analysis
|
2015-03-17 18:14:30 +01:00
|
|
|
of bidirectional reflectance distribution functions (BRDFs). It can load and
|
|
|
|
plot analytic BRDF functions (coded as functions in OpenGL's GLSL shader
|
|
|
|
language), measured material data from the MERL database, and anisotropic
|
|
|
|
measured material data from MIT CSAIL. Graphs and visualizations update in
|
|
|
|
real time as parameters are changed, making it a useful tool for evaluating
|
|
|
|
and understanding different BRDFs (and other component functions).")
|
2017-05-24 23:23:42 +02:00
|
|
|
(license license:ms-pl))))
|
2015-03-18 08:57:50 +01:00
|
|
|
|
|
|
|
(define-public agg
|
|
|
|
(package
|
|
|
|
(name "agg")
|
|
|
|
(version "2.5")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2015-12-19 00:42:10 +01:00
|
|
|
(uri (list (string-append
|
|
|
|
"ftp://ftp.fau.de/gentoo/distfiles/agg-"
|
|
|
|
version ".tar.gz")
|
|
|
|
(string-append
|
|
|
|
"ftp://ftp.ula.ve/gentoo/distfiles/agg-"
|
|
|
|
version ".tar.gz")
|
|
|
|
|
|
|
|
;; Site was discontinued.
|
|
|
|
(string-append "http://www.antigrain.com/agg-"
|
|
|
|
version ".tar.gz")))
|
2015-03-18 08:57:50 +01:00
|
|
|
(sha256
|
|
|
|
(base32 "07wii4i824vy9qsvjsgqxppgqmfdxq0xa87i5yk53fijriadq7mb"))
|
2016-04-08 14:18:13 +02:00
|
|
|
(patches (search-patches "agg-am_c_prototype.patch"))))
|
2015-03-18 08:57:50 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:configure-flags
|
|
|
|
(list (string-append "--x-includes=" (assoc-ref %build-inputs "libx11")
|
|
|
|
"/include")
|
|
|
|
(string-append "--x-libraries=" (assoc-ref %build-inputs "libx11")
|
|
|
|
"/lib"))
|
|
|
|
#:phases
|
|
|
|
(alist-cons-after
|
|
|
|
'unpack 'autoreconf
|
|
|
|
(lambda _
|
|
|
|
;; let's call configure from configure phase and not now
|
|
|
|
(substitute* "autogen.sh" (("./configure") "# ./configure"))
|
|
|
|
(zero? (system* "sh" "autogen.sh")))
|
|
|
|
%standard-phases)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("libtool" ,libtool)
|
|
|
|
("autoconf" ,autoconf)
|
|
|
|
("automake" ,automake)
|
|
|
|
("bash" ,bash)))
|
|
|
|
(inputs
|
|
|
|
`(("libx11" ,libx11)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("sdl" ,sdl)))
|
2015-12-19 00:42:10 +01:00
|
|
|
|
|
|
|
;; Antigrain.com was discontinued.
|
|
|
|
(home-page "http://agg.sourceforge.net/antigrain.com/index.html")
|
2015-03-18 08:57:50 +01:00
|
|
|
(synopsis "High-quality 2D graphics rendering engine for C++")
|
|
|
|
(description
|
|
|
|
"Anti-Grain Geometry is a high quality rendering engine written in C++.
|
|
|
|
It supports sub-pixel resolutions and anti-aliasing. It is also library for
|
|
|
|
rendering SVG graphics.")
|
|
|
|
(license license:gpl2+)))
|