mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2025-10-02 02:14:59 +00:00
386 lines
16 KiB
Scheme
386 lines
16 KiB
Scheme
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
|
;;; Copyright © 2022 Jelle Licht <jlicht@fsfe.org>
|
|
;;; Copyright © 2024 Oleg Pykhalov <go.wigust@gmail.com>
|
|
;;; Copyright © 2024 Murilo <murilo@disroot.org>
|
|
|
|
(define-module (nongnu packages video)
|
|
#:use-module (gnu packages gl)
|
|
#:use-module (gnu packages gnome)
|
|
#:use-module (gnu packages node)
|
|
#:use-module (gnu packages pkg-config)
|
|
#:use-module (gnu packages qt)
|
|
#:use-module (gnu packages tls)
|
|
#:use-module (gnu packages video)
|
|
#:use-module (guix build-system cmake)
|
|
#:use-module (guix build-system gnu)
|
|
#:use-module (guix build-system meson)
|
|
#:use-module (guix build-system qt)
|
|
#:use-module (guix gexp)
|
|
#:use-module (guix download)
|
|
#:use-module (guix git-download)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix utils)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (nongnu packages chromium)
|
|
#:use-module (nongnu packages nvidia))
|
|
|
|
(define-public ffmpeg-nvenc
|
|
(package
|
|
(inherit ffmpeg)
|
|
(name "ffmpeg-nvenc")
|
|
(version "6.1.2")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
|
|
version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"0f2fr8ywchhlkdff88lr4d4vscqzsi1ndjh3r5jwbkayf94lcqiv"))))
|
|
(inputs
|
|
(modify-inputs
|
|
(package-inputs ffmpeg)
|
|
(prepend nv-codec-headers)))
|
|
(arguments
|
|
(substitute-keyword-arguments (package-arguments ffmpeg)
|
|
((#:configure-flags flags)
|
|
;; Currently only interested in NVENC.
|
|
;; Might be better to make a ffmpeg-nonfree with all nonfree codecs
|
|
;; in the future.
|
|
#~(cons* "--enable-cuvid"
|
|
"--enable-ffnvcodec"
|
|
"--enable-encoder=hevc_nvenc"
|
|
"--enable-encoder=h264_nvenc"
|
|
#$flags))))
|
|
(description
|
|
(string-append
|
|
(package-description ffmpeg)
|
|
" This build of FFmpeg includes the nonfree NVIDIA encoder for
|
|
@code{h264_nvenc} and @code{hevc_nvenc} hardware encoding on NVIDIA GPUs."))
|
|
(properties '((upstream-name . "ffmpeg")))))
|
|
|
|
(define-public gmmlib
|
|
(package
|
|
(name "gmmlib")
|
|
(version "22.7.2")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/intel/gmmlib")
|
|
(commit (string-append "intel-gmmlib-" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"0ijvcmg33mmhc4sr76qgwbiacpnzbja7lh9fnm0scf8vysydlnjd"))))
|
|
(build-system cmake-build-system)
|
|
(arguments
|
|
;; Tests are run as part of the normal build step
|
|
'(#:tests? #f))
|
|
(home-page "https://github.com/intel/gmmlib")
|
|
(synopsis "Intel Graphics Memory Management Library")
|
|
(description
|
|
"This package provides device specific and buffer management for the
|
|
Intel Graphics Compute Runtime for OpenCL and the Intel Media Driver
|
|
for VAAPI.")
|
|
(license license:expat)))
|
|
|
|
(define-public intel-media-driver
|
|
(package
|
|
(name "intel-media-driver")
|
|
(version "25.1.4")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/intel/media-driver")
|
|
(commit (string-append "intel-media-" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"1c287qy8xnm4i6naflpvd83iz051ff3a348dpp75lna618wh24wi"))))
|
|
(build-system cmake-build-system)
|
|
(inputs (list libva gmmlib))
|
|
(native-inputs (list pkg-config))
|
|
(arguments
|
|
(list #:tests? #f ;Tests are run as part of the normal build step
|
|
#:configure-flags
|
|
#~(list "-DENABLE_NONFREE_KERNELS=OFF"
|
|
(string-append "-DLIBVA_DRIVERS_PATH="
|
|
#$output "/lib/dri"))))
|
|
;; XXX Because of <https://issues.guix.gnu.org/issue/22138>, we need to add
|
|
;; this to all VA-API back ends instead of once to libva.
|
|
(native-search-paths
|
|
(list (search-path-specification
|
|
(variable "LIBVA_DRIVERS_PATH")
|
|
(files '("lib/dri")))))
|
|
(supported-systems '("i686-linux" "x86_64-linux"))
|
|
(home-page "https://github.com/intel/media-driver")
|
|
(synopsis "Intel Media Driver for VAAPI")
|
|
(description
|
|
"This package provides a VA-API user mode driver supporting hardware
|
|
accelerated decoding, encoding, and video post processing for the GEN based
|
|
graphics hardware.")
|
|
(license (list license:expat license:bsd-3))))
|
|
|
|
(define-public intel-media-driver/nonfree
|
|
(package
|
|
(inherit intel-media-driver)
|
|
(name "intel-media-driver-nonfree")
|
|
(arguments
|
|
(substitute-keyword-arguments (package-arguments intel-media-driver)
|
|
((#:configure-flags flags #~'())
|
|
#~(cons "-DENABLE_NONFREE_KERNELS=ON"
|
|
(delete "-DENABLE_NONFREE_KERNELS=OFF" #$flags)))))
|
|
(synopsis
|
|
(string-append
|
|
(package-synopsis intel-media-driver)
|
|
" with nonfree kernels"))
|
|
(description
|
|
(string-append
|
|
(package-description intel-media-driver)
|
|
" This build of intel-media-driver includes nonfree blobs to fully enable the
|
|
video decode capabilities of supported Intel GPUs."))))
|
|
|
|
(define-public nv-codec-headers
|
|
(package
|
|
(name "nv-codec-headers")
|
|
(version "13.0.19.0")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://git.videolan.org/git/ffmpeg/nv-codec-headers.git")
|
|
(commit (string-append "n" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "01p6bjbgm6hfc1snf0hw63b7f7hif40v7bb1xn84ic3cww2m2fcw"))))
|
|
(arguments
|
|
(list
|
|
#:tests? #f ; No tests.
|
|
#:make-flags #~(list (string-append "PREFIX=" #$output))
|
|
#:phases #~(modify-phases %standard-phases
|
|
(delete 'configure)
|
|
(add-after 'unpack 'fix-paths
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(substitute* "include/ffnvcodec/dynlink_loader.h"
|
|
(("lib.*\\.so\\.." lib)
|
|
(search-input-file
|
|
inputs (string-append "lib/" lib)))))))))
|
|
(build-system gnu-build-system)
|
|
(inputs (list nvidia-driver))
|
|
(home-page "https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git")
|
|
(synopsis
|
|
"FFmpeg version of headers required to interface with NVIDIA's codec APIs")
|
|
(description
|
|
"This package provides the necessary headers for interfacing with NVIDIA's
|
|
codec APIs.")
|
|
(license license:expat)))
|
|
|
|
(define-public nvidia-vaapi-driver
|
|
(package
|
|
(name "nvidia-vaapi-driver")
|
|
(version "0.0.13")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/elFarto/nvidia-vaapi-driver")
|
|
(commit (string-append "v" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "1ycrik4sdiy14miqvin5vg79776p7p2pazm0s8la4kngbgss1qr9"))))
|
|
(build-system meson-build-system)
|
|
(arguments
|
|
(list #:phases
|
|
#~(modify-phases %standard-phases
|
|
(add-before 'configure 'fix-install-path
|
|
(lambda _
|
|
(substitute* "meson.build"
|
|
(("(nvidia_install_dir = ).*" _ prefix)
|
|
(format #f "~a'~a/lib/dri'" prefix #$output))))))))
|
|
(native-inputs (list pkg-config))
|
|
(inputs (list libva mesa nv-codec-headers))
|
|
;; XXX Because of <https://issues.guix.gnu.org/issue/22138>, we need to add
|
|
;; this to all VA-API back ends instead of once to libva.
|
|
(native-search-paths
|
|
(list (search-path-specification
|
|
(variable "LIBVA_DRIVERS_PATH")
|
|
(files '("lib/dri")))))
|
|
(home-page "https://github.com/elFarto/nvidia-vaapi-driver")
|
|
(synopsis "VA-API implemention using NVIDIA's NVDEC.")
|
|
(description
|
|
"This is an VA-API implementation that uses NVDEC as a backend,
|
|
specifically designed to be used by Firefox for accelerated decoding of web
|
|
content.")
|
|
(license license:expat)))
|
|
|
|
(define-public obs-with-cef
|
|
(package
|
|
(inherit obs)
|
|
(name "obs-with-cef")
|
|
(inputs
|
|
(append (package-inputs obs)
|
|
`(("chromium-embedded-framework" ,chromium-embedded-framework))))
|
|
(arguments
|
|
(substitute-keyword-arguments (package-arguments obs)
|
|
((#:configure-flags flags)
|
|
#~(append #$flags
|
|
'("-DBUILD_BROWSER=ON"
|
|
"-DCEF_ROOT_DIR=../source/cef")))
|
|
((#:phases phases)
|
|
#~(modify-phases #$phases
|
|
(add-before 'configure 'add-cef
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(let ((chromium-embedded-framework
|
|
#$(this-package-input "chromium-embedded-framework")))
|
|
(mkdir-p "cef/Release")
|
|
(mkdir-p "cef/Resources")
|
|
(for-each (lambda (file)
|
|
(symlink file (string-append "cef/Release/"
|
|
(basename file)))
|
|
(symlink file (string-append "cef/Resources/"
|
|
(basename file))))
|
|
(filter
|
|
(lambda (file)
|
|
(not (string= (basename (dirname file))
|
|
"locales")))
|
|
(find-files
|
|
(string-append chromium-embedded-framework
|
|
"/share/cef"))))
|
|
(symlink (string-append chromium-embedded-framework
|
|
"/lib/libcef.so")
|
|
"cef/Release/libcef.so")
|
|
(mkdir-p "cef/libcef_dll_wrapper")
|
|
(symlink (string-append chromium-embedded-framework
|
|
"/lib/libcef_dll_wrapper.a")
|
|
"cef/libcef_dll_wrapper/libcef_dll_wrapper.a")
|
|
(symlink (string-append chromium-embedded-framework
|
|
"/include")
|
|
"cef/include"))))
|
|
(add-after 'install 'symlink-obs-browser
|
|
;; Required for lib/obs-plugins/obs-browser.so file.
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(symlink
|
|
(string-append #$output
|
|
"/lib/libobs-frontend-api.so.0")
|
|
(string-append #$output
|
|
"/lib/obs-plugins/libobs-frontend-api.so.0"))
|
|
(symlink
|
|
(string-append #$output
|
|
"/lib/libobs.so.0")
|
|
(string-append #$output
|
|
"/lib/obs-plugins/libobs.so.0"))))))))
|
|
(description
|
|
(string-append
|
|
(package-description obs)
|
|
" This build of OBS includes embeded Chromium-based browser to enable
|
|
Browser source."))))
|
|
|
|
(define-public stremio
|
|
(define server-js
|
|
(let ((version "4.20.8"))
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://dl.strem.io/server/v" version
|
|
"/desktop/server.js"))
|
|
(file-name (string-append "stremio-server-" version ".js"))
|
|
(sha256 (base32 "0xmlbx6aib5h78ya369pnpxyn05b12l05i8v2kymijbmaw7j04vi")))))
|
|
(package
|
|
(name "stremio")
|
|
(version "4.4.168")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/Stremio/stremio-shell")
|
|
(commit (string-append "v" version))
|
|
;; NOTE: submodules are embedded libraries so there is no reason
|
|
;; to unbundle them.
|
|
(recursive? #t)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "14x9i8qvm19sijh7hqppbk8s14dvv7dqlck7x3s8n9i4xn4ncgd7"))))
|
|
(build-system qt-build-system)
|
|
(arguments
|
|
(list
|
|
#:tests? #f
|
|
#:phases
|
|
#~(modify-phases %standard-phases
|
|
(add-after 'unpack 'setup-server
|
|
(lambda _
|
|
(copy-file #$server-js "server.js")))
|
|
(add-after 'unpack 'fix-paths
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(substitute* "CMakeLists.txt"
|
|
(("opt/stremio")
|
|
"bin"))
|
|
(substitute* "release.makefile"
|
|
(("/opt/stremio")
|
|
"/bin"))
|
|
(substitute* "main.qml"
|
|
(("var node_executable =.*$")
|
|
(string-append "var node_executable =\""
|
|
(search-input-file inputs "bin/node") "\"\n"))
|
|
(("applicationDirPath \\+\"/server\\.js\"")
|
|
(string-append "\""
|
|
#$server-js "\"")))
|
|
(substitute* "smartcode-stremio.desktop"
|
|
(("Exec=stremio")
|
|
(string-append "Exec="
|
|
#$output "/bin/stremio")))))
|
|
(replace 'configure
|
|
(lambda _
|
|
(invoke "qmake")))
|
|
(replace 'build
|
|
(lambda _
|
|
(invoke "make" "-f" "release.makefile"
|
|
(string-append "PREFIX="
|
|
#$output))))
|
|
(replace 'install
|
|
(lambda _
|
|
(invoke "make" "-f" "release.makefile" "install"
|
|
(string-append "PREFIX="
|
|
#$output))
|
|
(with-directory-excursion #$output
|
|
;; Setup desktop file.
|
|
(let ((dir "share/applications")
|
|
(desktop "smartcode-stremio.desktop"))
|
|
(mkdir-p "share/applications")
|
|
(copy-file (string-append "bin/" desktop)
|
|
(string-append dir "/" desktop))
|
|
(delete-file (string-append "bin/" desktop)))
|
|
;; Setup icon dir.
|
|
(for-each (lambda (size)
|
|
(let ((dir (string-append "share/icons/hicolor/"
|
|
size "x" size "/apps")))
|
|
(mkdir-p dir)
|
|
(copy-file (string-append
|
|
"bin/icons/smartcode-stremio_" size
|
|
".png")
|
|
(string-append dir
|
|
"/smartcode-stremio.png"))
|
|
(copy-file (string-append
|
|
"bin/icons/smartcode-stremio-tray_"
|
|
size ".png")
|
|
(string-append dir
|
|
"/smartcode-stremio-tray.png"))))
|
|
'("16" "22" "24" "32" "64" "128"))
|
|
;; Remove unnecessary opt dir.
|
|
(delete-file-recursively "bin/icons")))))))
|
|
(inputs (list librsvg
|
|
mpv
|
|
node
|
|
openssl
|
|
qtdeclarative-5
|
|
qtquickcontrols-5
|
|
qtwebchannel-5
|
|
qtwebengine-5
|
|
qtbase-5))
|
|
(home-page "https://www.stremio.com")
|
|
(synopsis "Modern media center that gives you the freedom to watch
|
|
everything you want")
|
|
(description
|
|
"Stremio offers a secure, modern and seamless entertainment experience.
|
|
With its easy-to-use interface and diverse content library, including 4K HDR
|
|
support, users can enjoy their favorite movies and TV shows across all their
|
|
devices. And with its commitment to security, Stremio is the ultimate choice
|
|
for a worry-free, high-quality streaming experience.")
|
|
(license license:gpl3)))
|