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