libstudxml: init at 1.1.0-b.10+2

This commit is contained in:
TomaSajt 2024-02-13 18:22:55 +01:00
parent 18ef700441
commit 72e6fd8a9c
No known key found for this signature in database
GPG Key ID: F011163C050122A1

View File

@ -0,0 +1,38 @@
{
lib,
stdenv,
fetchgit,
build2,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libstudxml";
version = "1.1.0-b.10+2";
src = fetchgit {
url = "https://git.codesynthesis.com/libstudxml/libstudxml.git";
rev = "v${finalAttrs.version}";
hash = "sha256-OsjMhQ3u/wLhOay7qg9sQMEhnAOdrO30dsKQ8aDWUOo=";
};
outputs = [
"out"
"dev"
"doc"
];
nativeBuildInputs = [ build2 ];
# lib files are not marked as executable by default
postInstall = ''
chmod +x "$out"/lib/*
'';
meta = {
description = "A streaming XML pull parser and streaming XML serializer implementation for modern, standard C++";
homepage = "https://www.codesynthesis.com/projects/libstudxml/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tomasajt ];
platforms = lib.platforms.all;
};
})