472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
49 lines
966 B
Nix
49 lines
966 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libwebm";
|
|
version = "1.0.0.31";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "webmproject";
|
|
repo = "libwebm";
|
|
rev = "refs/tags/libwebm-${finalAttrs.version}";
|
|
hash = "sha256-+ayX33rcX/jkewsW8WrGalTe9X44qFBHOrIYTteOQzc=";
|
|
};
|
|
|
|
patches = [
|
|
# libwebm does not generate cmake exports by default,
|
|
# which are necessary to find and use it as build-dependency
|
|
# in other packages
|
|
./0001-cmake-exports.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
outputs = [
|
|
"dev"
|
|
"out"
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "WebM file parser";
|
|
homepage = "https://www.webmproject.org/code/";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ niklaskorz ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|