tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libmatroska: add pkg-config test
seth
2 years ago
6d9d1fa6
f28b426a
+7
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
li
libmatroska
package.nix
+7
pkgs/by-name/li/libmatroska/package.nix
···
5
5
cmake,
6
6
libebml,
7
7
pkg-config,
8
8
+
testers,
8
9
validatePkgConfig,
10
10
+
libmatroska,
9
11
}:
10
12
11
13
stdenv.mkDerivation rec {
···
34
36
35
37
cmakeFlags = [ "-DBUILD_SHARED_LIBS=YES" ];
36
38
39
39
+
passthru = {
40
40
+
tests.pkg-config = testers.hasPkgConfigModules { package = libmatroska; };
41
41
+
};
42
42
+
37
43
meta = {
38
44
description = "Library to parse Matroska files";
39
45
homepage = "https://matroska.org/";
···
41
47
license = lib.licenses.lgpl21;
42
48
maintainers = with lib.maintainers; [ getchoo ];
43
49
platforms = lib.platforms.unix;
50
50
+
pkgConfigModules = [ "libmatroska" ];
44
51
};
45
52
}