nixpkgs/pkgs/development/libraries/libwps/default.nix
Tobias Geerinckx-Rice 823ec00fdf
libwps: 0.4.2 -> 0.4.3
2016-05-25 02:06:47 +02:00

21 lines
563 B
Nix

{ stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }:
stdenv.mkDerivation rec {
name = "libwps-${version}";
version = "0.4.3";
src = fetchurl {
url = "mirror://sourceforge/libwps/${name}.tar.bz2";
sha256 = "0v1a0hj96i4jhb5833336s4zcslzb6md5cnmnrvgywx8cmw40c0c";
};
buildInputs = [ boost pkgconfig librevenge zlib ];
meta = with stdenv.lib; {
homepage = http://libwps.sourceforge.net/;
description = "Microsoft Works document format import filter library";
platforms = platforms.linux;
license = licenses.lgpl21;
};
}