mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
83b6a28908
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libwps/versions.
24 lines
680 B
Nix
24 lines
680 B
Nix
{ stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libwps-${version}";
|
|
version = "0.4.10";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libwps/${name}.tar.bz2";
|
|
sha256 = "1adx2wawl0i16p8df80m6k6a137h709ip4zc0zlzr6wal8gpn0i4";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|