libreoffice: 5.0.0.5 -> 5.0.1.2, refactor
I've extracted some of libraries and made expression simpler. (cherry picked from commit 66e6f99d40350a4b2a235913a1fa77d88b1a44a6) Signed-off-by: Domen Kožar <domen@dev.si>
This commit is contained in:
20
pkgs/development/libraries/libwps/default.nix
Normal file
20
pkgs/development/libraries/libwps/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libwps-${version}";
|
||||
version = "0.4.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/libwps/${name}.tar.gz";
|
||||
sha256 = "0nc44ia5sn9mmhkq5hjacz0vm520wldq03whc5psgcb9dahvsjsc";
|
||||
};
|
||||
|
||||
buildInputs = [ boost pkgconfig librevenge zlib ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://libwps.sourceforge.net/;
|
||||
description = "Microsoft Works file word processor format import filter library";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.lgpl21;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user