mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
66a21f080f
libwps: 0.4.12 -> 0.4.13
24 lines
657 B
Nix
24 lines
657 B
Nix
{ lib, stdenv, fetchurl, boost, pkg-config, librevenge, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libwps";
|
|
version = "0.4.13";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libwps/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-eVwva90EwLZgrMpRTcc2cAc9PG5wbXbV2GtK2BMpLrk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ boost librevenge zlib ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-fallthrough";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://libwps.sourceforge.net/";
|
|
description = "Microsoft Works document format import filter library";
|
|
platforms = platforms.unix;
|
|
license = licenses.lgpl21;
|
|
};
|
|
}
|