1{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 version = "1.0.5";
5 pname = "libde265";
6
7 src = fetchFromGitHub {
8 owner = "strukturag";
9 repo = "libde265";
10 rev = "v${version}";
11 sha256 = "1qisj8ryzbknam3hk81rq70fsd9mcpxm898bqygvbsmbwyvmz3pg";
12 };
13
14 nativeBuildInputs = [ autoreconfHook pkgconfig ];
15
16 enableParallelBuilding = true;
17
18 meta = {
19 homepage = "https://github.com/strukturag/libde265";
20 description = "Open h.265 video codec implementation";
21 license = stdenv.lib.licenses.lgpl3;
22 platforms = stdenv.lib.platforms.unix;
23 maintainers = with stdenv.lib.maintainers; [ gebner ];
24 };
25
26}