nixpkgs/pkgs/development/libraries/libwps/default.nix
Ryan Mulligan a3ecfccc2d libwps: 0.4.3 -> 0.4.8
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8/bin/wps2html -v` and found version 0.4.8
- ran `/nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8/bin/wps2html --version` and found version 0.4.8
- ran `/nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8/bin/wps2raw -v` and found version 0.4.8
- ran `/nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8/bin/wps2raw --version` and found version 0.4.8
- ran `/nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8/bin/wps2text -v` and found version 0.4.8
- ran `/nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8/bin/wps2text --version` and found version 0.4.8
- ran `/nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8/bin/wks2csv -v` and found version 0.4.8
- ran `/nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8/bin/wks2csv --version` and found version 0.4.8
- ran `/nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8/bin/wks2raw -v` and found version 0.4.8
- ran `/nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8/bin/wks2raw --version` and found version 0.4.8
- ran `/nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8/bin/wks2text -v` and found version 0.4.8
- ran `/nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8/bin/wks2text --version` and found version 0.4.8
- found 0.4.8 with grep in /nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8
- found 0.4.8 in filename of file in /nix/store/xi4b6qg78waf3xxlls86paxz1xxfzh9x-libwps-0.4.8
2018-02-26 21:30:52 -08:00

24 lines
679 B
Nix

{ stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }:
stdenv.mkDerivation rec {
name = "libwps-${version}";
version = "0.4.8";
src = fetchurl {
url = "mirror://sourceforge/libwps/${name}.tar.bz2";
sha256 = "163gdqaanqfs767aj6zdzagqldngn8i7f0hbmhhxlxr0wmvx6c9q";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ boost librevenge zlib ];
NIX_CFLAGS_COMPILE = [ "-Wno-error=implicit-fallthrough" ]; # newly detected by gcc-7
meta = with stdenv.lib; {
homepage = http://libwps.sourceforge.net/;
description = "Microsoft Works document format import filter library";
platforms = platforms.linux;
license = licenses.lgpl21;
};
}