mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
643 B
Nix
25 lines
643 B
Nix
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
version = "1.0.3";
|
||
|
name = "libde265-${version}";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "strukturag";
|
||
|
repo = "libde265";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "049g77f6c5sbk1h534zi9akj3y5h8zwnca5c9kqqjkn7f17irk10";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
|
||
|
}
|