nixpkgs/pkgs/development/libraries/libwpg/default.nix
Ryan Mulligan 1e9a169232 libwpg: 0.3.0 -> 0.3.2
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/fy1rzjb6d204ca4063ymw4n5gcrnh7hp-libwpg-0.3.2/bin/wpg2raw --version` and found version 0.3.2
- ran `/nix/store/fy1rzjb6d204ca4063ymw4n5gcrnh7hp-libwpg-0.3.2/bin/wpg2svg --version` and found version 0.3.2
- found 0.3.2 with grep in /nix/store/fy1rzjb6d204ca4063ymw4n5gcrnh7hp-libwpg-0.3.2
- found 0.3.2 in filename of file in /nix/store/fy1rzjb6d204ca4063ymw4n5gcrnh7hp-libwpg-0.3.2

cc ""
2018-02-26 21:29:02 -08:00

21 lines
519 B
Nix

{ stdenv, fetchurl, pkgconfig, libwpd, zlib, librevenge }:
stdenv.mkDerivation rec {
name = "libwpg-0.3.2";
src = fetchurl {
url = "mirror://sourceforge/libwpg/${name}.tar.xz";
sha256 = "0cwc5zkp210c661l0bvk6q21jg9ak5g8gmy578w5fgfnjymz3yjp";
};
buildInputs = [ libwpd zlib librevenge ];
nativeBuildInputs = [ pkgconfig ];
meta = {
homepage = http://libwpg.sourceforge.net;
description = "C++ library to parse WPG";
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
};
}