(define-module (ajatt packages video) #:use-module (gnu packages video) #:use-module (guix build-system copy) #:use-module (guix git-download) #:use-module (gnu packages) #:use-module (guix download) #:use-module (guix packages) #:use-module (guix gexp) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (gnu packages cmake) #:use-module ((guix licenses) #:prefix license:)) (define-public vvdec (package (name "vvdec") (version "2.3.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/fraunhoferhhi/vvdec.git") (commit "ad8f4bb7d6271b5fe6b3ab0a5e64114dec1af5d4"))) (sha256 (base32 "0qr4sp3gq3pxpl7nr2dxd628jmdwv09f76pgsyc5rydz05ahymym")))) (build-system cmake-build-system) (arguments (list #:cmake cmake #:tests? #f )) (synopsis "VVdeC, the Fraunhofer Versatile Video Decoder.") (description "VVdeC, the Fraunhofer Versatile Video Decoder, is a fast software H.266/VVC decoder implementation supporting all features of the VVC Main10 profile.") (home-page "https://www.hhi.fraunhofer.de/en/departments/vca/technologies-and-solutions/h266-vvc.html") (license (list license:bsd-3)))) vvdec