depot/pkgs/by-name/li/libstudxml/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

38 lines
847 B
Nix

{
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;
};
})