tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libwbxml: fix build
Markus Heinrich
1 year ago
c1c4345d
f4f03ae1
+8
-6
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
li
libwbxml
package.nix
+8
-6
pkgs/by-name/li/libwbxml/package.nix
···
4
4
lib,
5
5
cmake,
6
6
expat,
7
7
+
check,
8
8
+
pkg-config,
7
9
}:
8
10
9
11
stdenv.mkDerivation rec {
···
17
19
sha256 = "sha256-yy8+CyNKXuttCmxRxH/XptIloDklto4f5Zg0vnwnneY=";
18
20
};
19
21
20
20
-
nativeBuildInputs = [ cmake ];
22
22
+
nativeBuildInputs = [
23
23
+
cmake
24
24
+
pkg-config
25
25
+
check
26
26
+
];
21
27
buildInputs = [ expat ];
22
28
23
23
-
postPatch = ''
24
24
-
sed -i 's/^SET.*$//' cmake/CMakeLists.txt
25
25
-
'';
26
26
-
27
29
meta = with lib; {
28
30
homepage = "https://github.com/libwbxml/libwbxml";
29
31
description = "WBXML Library (aka libwbxml) contains a library and its associated tools to Parse, Encode and Handle WBXML documents";
30
32
maintainers = with maintainers; [ mh ];
31
31
-
platforms = platforms.linux;
33
33
+
platforms = platforms.unix;
32
34
license = licenses.lgpl21Plus;
33
35
};
34
36
}