nixpkgs/pkgs/applications/office/abiword/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

2018-03-29 08:25:32 +00:00
{ stdenv, fetchurl, pkgconfig, gtk3, fribidi
, libpng, popt, libgsf, enchant, wv, librsvg, bzip2, libjpeg, perl
2019-02-13 21:47:50 +00:00
, boost, libxslt, goffice, wrapGAppsHook, gnome3
}:
stdenv.mkDerivation rec {
pname = "abiword";
2017-11-03 14:38:33 +00:00
version = "3.0.2";
src = fetchurl {
url = "https://www.abisource.com/downloads/abiword/${version}/source/${pname}-${version}.tar.gz";
2017-11-03 14:38:33 +00:00
sha256 = "08imry821g81apdwym3gcs4nss0l9j5blqk31j5rv602zmcd9gxg";
};
enableParallelBuilding = true;
2017-11-03 14:38:33 +00:00
patches = [
2017-11-25 23:49:11 +00:00
# https://bugzilla.abisource.com/show_bug.cgi?id=13791
(fetchurl {
url = https://bugzilla.abisource.com/attachment.cgi?id=5860;
sha256 = "02p8kz02xm1197zcpzjs010mna9hxsbq5lwgxr8b7qhh9yxja7al";
})
2017-11-03 14:38:33 +00:00
];
2018-03-29 08:25:32 +00:00
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
2018-03-29 08:25:32 +00:00
buildInputs = [
gtk3 librsvg bzip2 fribidi libpng popt
2019-02-13 21:47:50 +00:00
libgsf enchant wv libjpeg perl boost libxslt goffice gnome3.adwaita-icon-theme
2018-03-29 08:25:32 +00:00
];
2014-06-23 10:54:46 +00:00
meta = with stdenv.lib; {
description = "Word processing program, similar to Microsoft Word";
2018-03-29 08:25:32 +00:00
homepage = https://www.abisource.com/;
2014-06-23 10:54:46 +00:00
license = licenses.gpl3;
platforms = platforms.linux;
2017-11-03 14:38:33 +00:00
maintainers = with maintainers; [ pSub ylwghst ];
};
}