nixpkgs/pkgs/development/libraries/libodfgen/default.nix
R. RyanTM a58efac160 libodfgen: 0.1.6 -> 0.1.7 (#42246)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/libodfgen/versions.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 0.1.7 with grep in /nix/store/9ngbm7b2sd2zvagliqnlgvx892ay7wm9-libodfgen-0.1.7
- directory tree listing: https://gist.github.com/6a8d890d4d5134b3b823c052014dfbd6
- du listing: https://gist.github.com/294321ff72a9aa97f89b6941ab62412d
2018-07-06 20:19:42 +02:00

31 lines
948 B
Nix

{stdenv, fetchurl, boost, pkgconfig, cppunit, zlib, libwpg, libwpd, librevenge}:
let
s = # Generated upstream information
rec {
baseName="libodfgen";
version="0.1.7";
name="${baseName}-${version}";
hash="0cdq48wlpp8m0qmndybv64r0m4vh0qsqx69cn6ms533cjlgljgij";
url="mirror://sourceforge/project/libwpd/libodfgen/libodfgen-0.1.7/libodfgen-0.1.7.tar.xz";
sha256="0cdq48wlpp8m0qmndybv64r0m4vh0qsqx69cn6ms533cjlgljgij";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
boost cppunit zlib libwpg libwpd librevenge
];
in
stdenv.mkDerivation {
inherit (s) name version;
inherit nativeBuildInputs buildInputs;
src = fetchurl {
inherit (s) url sha256;
};
meta = {
inherit (s) version;
description = ''A base library for generating ODF documents'';
license = stdenv.lib.licenses.mpl20 ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
};
}