Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-16.03 21 lines 599 B view raw
1{ stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }: 2 3let version = "0.4.2"; in 4stdenv.mkDerivation rec { 5 name = "libwps-${version}"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/libwps/${name}.tar.gz"; 9 sha256 = "0c90i3zafxxsj989bd9bs577blx3mrb90rj52iv6ijc4qivi4wkr"; 10 }; 11 12 buildInputs = [ boost pkgconfig librevenge zlib ]; 13 14 meta = with stdenv.lib; { 15 inherit version; 16 homepage = http://libwps.sourceforge.net/; 17 description = "Microsoft Works file word processor format import filter library"; 18 platforms = platforms.linux; 19 license = licenses.lgpl21; 20 }; 21}