From 21d3eee760640c39071f7eee5166950d944f70da Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 21 Mar 2019 18:44:00 +0100 Subject: dav1d: init at 0.2.1 --- pkgs/development/libraries/dav1d/default.nix | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/development/libraries/dav1d/default.nix (limited to 'pkgs/development/libraries/dav1d') diff --git a/pkgs/development/libraries/dav1d/default.nix b/pkgs/development/libraries/dav1d/default.nix new file mode 100644 index 00000000000..c8aa70d0892 --- /dev/null +++ b/pkgs/development/libraries/dav1d/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchFromGitLab, meson, ninja, nasm }: + +stdenv.mkDerivation rec { + pname = "dav1d"; + version = "0.2.1"; + + src = fetchFromGitLab { + domain = "code.videolan.org"; + owner = "videolan"; + repo = pname; + rev = version; + sha256 = "0diihk7lcdxxbfqp79dpvj14008zfzmayamh4vj310i524lqnkb6"; + }; + + nativeBuildInputs = [ meson ninja nasm ]; + # TODO: doxygen (currently only HTML and not build by default). + + meta = with stdenv.lib; { + description = "A cross-platform AV1 decoder focused on speed and correctness"; + longDescription = '' + The goal of this project is to provide a decoder for most platforms, and + achieve the highest speed possible to overcome the temporary lack of AV1 + hardware decoder. It supports all features from AV1, including all + subsampling and bit-depth parameters. + ''; + inherit (src.meta) homepage; + license = licenses.bsd2; + platforms = platforms.unix; + maintainers = with maintainers; [ primeos ]; + }; +} -- cgit 1.4.1