Merge pull request #162075 from markus-heinrich/submit/libwbxml
libwbxml: init at 0.11.7
This commit is contained in:
commit
93b1d7c44a
@ -7963,6 +7963,12 @@
|
||||
githubId = 668926;
|
||||
name = "Maximilian Güntner";
|
||||
};
|
||||
mh = {
|
||||
email = "68288772+markus-heinrich@users.noreply.github.com";
|
||||
github = "markus-heinrich";
|
||||
githubId = 68288772;
|
||||
name = "Markus Heinrich";
|
||||
};
|
||||
mhaselsteiner = {
|
||||
email = "magdalena.haselsteiner@gmx.at";
|
||||
github = "mhaselsteiner";
|
||||
|
28
pkgs/development/libraries/libwbxml/default.nix
Normal file
28
pkgs/development/libraries/libwbxml/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchFromGitHub, lib, cmake, expat }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libwbxml";
|
||||
version = "0.11.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libwbxml";
|
||||
repo = "libwbxml";
|
||||
rev = "${pname}-${version}";
|
||||
sha256 = "sha256:1b81rbkd28d9059vh8n5gql73crp8h7av67kkmr6lhicl08fv2xx";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ expat ];
|
||||
|
||||
postPatch = ''
|
||||
sed -i 's/^SET.*$//' cmake/CMakeLists.txt
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/libwbxml/libwbxml";
|
||||
description = "The WBXML Library (aka libwbxml) contains a library and its associated tools to Parse, Encode and Handle WBXML documents";
|
||||
maintainers = with maintainers; [ mh ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.lgpl21Plus;
|
||||
};
|
||||
}
|
@ -18834,6 +18834,8 @@ with pkgs;
|
||||
|
||||
libvori = callPackage ../development/libraries/libvori { };
|
||||
|
||||
libwbxml = callPackage ../development/libraries/libwbxml { };
|
||||
|
||||
libwebcam = callPackage ../os-specific/linux/libwebcam { };
|
||||
|
||||
libwebp = callPackage ../development/libraries/libwebp { };
|
||||
|
Loading…
Reference in New Issue
Block a user