summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/video
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-01-16 20:35:27 +0100
committerGitHub <noreply@github.com>2021-01-16 20:35:27 +0100
commita6d138c7adafdccd4c93b51e0f69d538cd9a2229 (patch)
tree02f80faa44b767e462a90c6e7b11e885d8e3d522 /pkgs/tools/video
parentf0e757d98a32dc5ad6a2915d7274af157fe8d59a (diff)
parent2345e374af7619987f33da98d1e9a4e559261db9 (diff)
Merge pull request #109405 from primeos/ffmpeg-full-disable-rav1e
ffmpeg-full: disable rav1e by default (in favor of svt-av1)
Diffstat (limited to 'pkgs/tools/video')
-rw-r--r--pkgs/tools/video/svt-av1/default.nix19
1 files changed, 17 insertions, 2 deletions
diff --git a/pkgs/tools/video/svt-av1/default.nix b/pkgs/tools/video/svt-av1/default.nix
index 38c16fadcb82..69ded2307de4 100644
--- a/pkgs/tools/video/svt-av1/default.nix
+++ b/pkgs/tools/video/svt-av1/default.nix
@@ -15,8 +15,23 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "AV1-compliant encoder/decoder library core";
- homepage = "https://github.com/AOMediaCodec/SVT-AV1";
- license = licenses.bsd2;
+ longDescription = ''
+ The Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder) is an
+ AV1-compliant encoder/decoder library core. The SVT-AV1 encoder
+ development is a work-in-progress targeting performance levels applicable
+ to both VOD and Live encoding / transcoding video applications. The
+ SVT-AV1 decoder implementation is targeting future codec research
+ activities.
+ '';
+ inherit (src.meta) homepage;
+ changelog = "https://github.com/AOMediaCodec/SVT-AV1/blob/v${version}/CHANGELOG.md";
+ license = with licenses; [
+ bsd2
+ {
+ fullName = "Alliance for Open Media Patent License 1.0";
+ url = "https://aomedia.org/license/patent-license/";
+ }
+ ];
platforms = platforms.unix;
broken = stdenv.isAarch64; # undefined reference to `cpuinfo_arm_linux_init'
maintainers = with maintainers; [ chiiruno ];