nixpkgs/pkgs/development/libraries/libwps/default.nix
Tobias Geerinckx-Rice 0e9bc96889 libwps 0.4.1 -> 0.4.2
2015-10-08 01:42:46 +02:00

22 lines
599 B
Nix

{ stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }:
let version = "0.4.2"; in
stdenv.mkDerivation rec {
name = "libwps-${version}";
src = fetchurl {
url = "mirror://sourceforge/libwps/${name}.tar.gz";
sha256 = "0c90i3zafxxsj989bd9bs577blx3mrb90rj52iv6ijc4qivi4wkr";
};
buildInputs = [ boost pkgconfig librevenge zlib ];
meta = with stdenv.lib; {
inherit version;
homepage = http://libwps.sourceforge.net/;
description = "Microsoft Works file word processor format import filter library";
platforms = platforms.linux;
license = licenses.lgpl21;
};
}