nixpkgs/pkgs/development/libraries/libde265/default.nix

27 lines
667 B
Nix
Raw Normal View History

2018-07-01 02:05:29 -07:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
stdenv.mkDerivation rec {
2020-10-04 05:18:22 -07:00
version = "1.0.7";
pname = "libde265";
2018-07-01 02:05:29 -07:00
src = fetchFromGitHub {
owner = "strukturag";
repo = "libde265";
rev = "v${version}";
2020-10-04 05:18:22 -07:00
sha256 = "0x7g9771457z49qvzpk4iswfhq018i0mzsflv9gg8if5hjqhfdp0";
2018-07-01 02:05:29 -07:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
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";
license = stdenv.lib.licenses.lgpl3;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ gebner ];
};
}