diff options
author | Hilton Chain <hako@ultrarare.space> | 2025-04-08 12:57:08 +0800 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-04-08 16:51:52 +0800 |
commit | 7fe5058817cda2a21611d7869ac7017a94239ff8 (patch) | |
tree | 6fb9c456f920fb67bfa7a4094cfdaac4a0a9779f | |
parent | 521729e5ca6db22eb7471813df7e7a6e7fb6c80f (diff) |
nongnu: ffmpeg-nvenc: Update to 6.1.2.
* nongnu/packages/video.scm (ffmpeg-nvenc): Update to 6.1.2.
[properties]: Set upstream-name.
-rw-r--r-- | nongnu/packages/video.scm | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/nongnu/packages/video.scm b/nongnu/packages/video.scm index 379ccbe..aeb712f 100644 --- a/nongnu/packages/video.scm +++ b/nongnu/packages/video.scm @@ -7,11 +7,11 @@ #:use-module (gnu packages gl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages video) - #:use-module (guix build utils) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) #:use-module (guix build-system meson) #:use-module (guix gexp) + #:use-module (guix download) #:use-module (guix git-download) #:use-module (guix packages) #:use-module (guix utils) @@ -20,8 +20,17 @@ #:use-module (nongnu packages nvidia)) (define-public ffmpeg-nvenc - (package/inherit ffmpeg + (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) @@ -41,7 +50,8 @@ (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.")))) +@code{h264_nvenc} and @code{hevc_nvenc} hardware encoding on NVIDIA GPUs.")) + (properties '((upstream-name . "ffmpeg"))))) (define-public gmmlib (package |