nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 17.09-beta 20 lines 563 B view raw
1{ stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }: 2 3stdenv.mkDerivation rec { 4 name = "libwps-${version}"; 5 version = "0.4.3"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/libwps/${name}.tar.bz2"; 9 sha256 = "0v1a0hj96i4jhb5833336s4zcslzb6md5cnmnrvgywx8cmw40c0c"; 10 }; 11 12 buildInputs = [ boost pkgconfig librevenge zlib ]; 13 14 meta = with stdenv.lib; { 15 homepage = http://libwps.sourceforge.net/; 16 description = "Microsoft Works document format import filter library"; 17 platforms = platforms.linux; 18 license = licenses.lgpl21; 19 }; 20}