2018-07-01 10:05:29 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-12-23 18:19:48 +00:00
|
|
|
version = "1.0.4";
|
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}";
|
2019-12-23 18:19:48 +00:00
|
|
|
sha256 = "0svxrhh1pv7xpj75svz0iw1sq5i6z2grj7sc3q11hl63666hzh7d";
|
2018-07-01 10:05:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
|
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";
|
|
|
|
license = stdenv.lib.licenses.lgpl3;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ gebner ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|