2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config }:
|
2018-07-01 02:05:29 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-11 05:07:28 -08:00
|
|
|
version = "1.0.8";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libde265";
|
2018-07-01 02:05:29 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "strukturag";
|
|
|
|
repo = "libde265";
|
|
|
|
rev = "v${version}";
|
2020-11-11 05:07:28 -08:00
|
|
|
sha256 = "1dzflqbk248lz5ws0ni5acmf32b3rmnq5gsfaz7691qqjxkl1zml";
|
2018-07-01 02:05:29 -07:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2018-07-01 02:05:29 -07:00
|
|
|
|
2019-06-10 16:18:53 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-07-01 02:05:29 -07:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/strukturag/libde265";
|
|
|
|
description = "Open h.265 video codec implementation";
|
2021-01-21 09:00:13 -08:00
|
|
|
license = lib.licenses.lgpl3;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = with lib.maintainers; [ gebner ];
|
2018-07-01 02:05:29 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|