mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
svt-av1: init at 0.8.6
This commit is contained in:
parent
f85194205d
commit
30a7b0a709
24
pkgs/tools/video/svt-av1/default.nix
Normal file
24
pkgs/tools/video/svt-av1/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, nasm }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "svt-av1";
|
||||
version = "0.8.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "AOMediaCodec";
|
||||
repo = "SVT-AV1";
|
||||
rev = "v${version}";
|
||||
sha256 = "1wzamg89azi1f93wxvdy7silsgklckc754ca066k33drvyacicyw";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake nasm ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "AV1-compliant encoder/decoder library core";
|
||||
homepage = "https://github.com/AOMediaCodec/SVT-AV1";
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.unix;
|
||||
broken = stdenv.isAarch64; # undefined reference to `cpuinfo_arm_linux_init'
|
||||
maintainers = with maintainers; [ chiiruno ];
|
||||
};
|
||||
}
|
@ -2672,6 +2672,8 @@ in
|
||||
|
||||
syslogng_incubator = callPackage ../tools/system/syslog-ng-incubator { };
|
||||
|
||||
svt-av1 = callPackage ../tools/video/svt-av1 { };
|
||||
|
||||
inherit (callPackages ../servers/rainloop { })
|
||||
rainloop-community
|
||||
rainloop-standard;
|
||||
|
Loading…
Reference in New Issue
Block a user