blob: 0ba8f021897d158eea1c27552758c3095571ad5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{
lib,
stdenv,
fetchFromGitHub,
cmake,
nix-update-script,
isStatic ? stdenv.hostPlatform.isStatic,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libwebm";
version = "1.0.0.32";
src = fetchFromGitHub {
owner = "webmproject";
repo = "libwebm";
tag = "libwebm-${finalAttrs.version}";
hash = "sha256-SxDGt7nPVkSxwRF/lMmcch1h+C2Dyh6GZUXoZjnXWb4=";
};
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 = [
(lib.cmakeBool "BUILD_SHARED_LIBS" (!isStatic))
];
passthru.updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"^libwebm-(.+)$"
];
};
meta = {
description = "WebM file parser";
homepage = "https://www.webmproject.org/code/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ niklaskorz ];
platforms = lib.platforms.all;
};
})
|