mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 01:03:25 +00:00
18d7b02911
Co-authored-by: Sergei Trofimovich <slyich@gmail.com>
49 lines
976 B
Nix
49 lines
976 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, gtest
|
|
, meson
|
|
, nasm
|
|
, ninja
|
|
, pkg-config
|
|
, stdenv
|
|
, windows
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "openh264";
|
|
version = "2.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cisco";
|
|
repo = "openh264";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-ai7lcGcQQqpsLGSwHkSs7YAoEfGCIbxdClO6JpGA+MI=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
nasm
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
gtest
|
|
] ++ lib.optionals stdenv.hostPlatform.isWindows [
|
|
windows.pthreads
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
homepage = "https://www.openh264.org";
|
|
description = "A codec library which supports H.264 encoding and decoding";
|
|
changelog = "https://github.com/cisco/openh264/releases/tag/${finalAttrs.src.rev}";
|
|
license = with lib.licenses; [ bsd2 ];
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.unix ++ lib.platforms.windows;
|
|
};
|
|
})
|