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
lib,
5
cmake,
6
expat,
0
0
7
}:
8
9
stdenv.mkDerivation rec {
···
17
sha256 = "sha256-yy8+CyNKXuttCmxRxH/XptIloDklto4f5Zg0vnwnneY=";
18
};
19
20
-
nativeBuildInputs = [ cmake ];
0
0
0
0
21
buildInputs = [ expat ];
22
23
-
postPatch = ''
24
-
sed -i 's/^SET.*$//' cmake/CMakeLists.txt
25
-
'';
26
-
27
meta = with lib; {
28
homepage = "https://github.com/libwbxml/libwbxml";
29
description = "WBXML Library (aka libwbxml) contains a library and its associated tools to Parse, Encode and Handle WBXML documents";
30
maintainers = with maintainers; [ mh ];
31
-
platforms = platforms.linux;
32
license = licenses.lgpl21Plus;
33
};
34
}
···
4
lib,
5
cmake,
6
expat,
7
+
check,
8
+
pkg-config,
9
}:
10
11
stdenv.mkDerivation rec {
···
19
sha256 = "sha256-yy8+CyNKXuttCmxRxH/XptIloDklto4f5Zg0vnwnneY=";
20
};
21
22
+
nativeBuildInputs = [
23
+
cmake
24
+
pkg-config
25
+
check
26
+
];
27
buildInputs = [ expat ];
28
0
0
0
0
29
meta = with lib; {
30
homepage = "https://github.com/libwbxml/libwbxml";
31
description = "WBXML Library (aka libwbxml) contains a library and its associated tools to Parse, Encode and Handle WBXML documents";
32
maintainers = with maintainers; [ mh ];
33
+
platforms = platforms.unix;
34
license = licenses.lgpl21Plus;
35
};
36
}