Server application for collaborative production of 3D assets and animations.
(define-module (vfx packages lucasfilm)

  #:use-module (gnu packages)
  #:use-module (gnu packages gl)
  #:use-module (gnu packages xorg)

  #:use-module (guix)
  #:use-module (guix build-system cmake)
  #:use-module ((guix licenses) #:prefix licenses:))

(define-public materialx
  (package
    (name "materialx")
    (version "1.38.6")
    (source
      (origin
        (method url-fetch)
        (uri
	      (string-append "https://github.com/AcademySoftwareFoundation/MaterialX/releases/"
                           "download/v" version "/MaterialX-" version ".tar.gz"))
        (sha256
	  (base32 "10y19ia12bcz43ccji8n8xflnd4jmkwfrwd15x9080499mwfhass"))))
    (build-system cmake-build-system)
    (arguments
      '(#:tests? #f))
    (inputs
      (list libx11 libxt mesa glu))
    (home-page "https://materialx.org/")
    (synopsis "MaterialX rich computer graphic materials open standard")
    (description "MaterialX is an open standard for representing rich material
and look-development content in computer graphics, enabling its
platform independent description
and exchange across applications and renderers.")
    (license licenses:asl2.0)))