2021-01-17 02:09:27 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gtk3, fribidi
|
2014-09-26 20:26:32 +00:00
|
|
|
, libpng, popt, libgsf, enchant, wv, librsvg, bzip2, libjpeg, perl
|
2021-05-07 21:18:14 +00:00
|
|
|
, boost, libxslt, goffice, wrapGAppsHook, gnome
|
2006-07-08 12:44:00 +00:00
|
|
|
}:
|
|
|
|
|
2014-09-26 20:26:32 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "abiword";
|
2020-03-14 07:32:47 +00:00
|
|
|
version = "3.0.4";
|
2012-12-12 05:02:05 +00:00
|
|
|
|
2006-07-08 12:44:00 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://www.abisource.com/downloads/abiword/${version}/source/${pname}-${version}.tar.gz";
|
2020-03-14 07:32:47 +00:00
|
|
|
sha256 = "1mx5l716n0z5788i19qmad30cck4v9ggr071cafw2nrf375rcc79";
|
2006-07-08 12:44:00 +00:00
|
|
|
};
|
|
|
|
|
2012-12-12 05:02:50 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-11-03 14:38:33 +00:00
|
|
|
patches = [
|
2020-03-14 07:32:47 +00:00
|
|
|
# Switch to using enchant2; note by the next update enchant2 should be
|
|
|
|
# default and this patch can be removed.
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/38506
|
2017-11-25 23:49:11 +00:00
|
|
|
(fetchurl {
|
2021-07-14 00:41:39 +00:00
|
|
|
url = "https://raw.githubusercontent.com/archlinux/svntogit-packages/d3ff951d3c7249927e7113b3de1653031db24596/abiword/trunk/enchant-2.1.patch";
|
2020-03-14 07:32:47 +00:00
|
|
|
sha256 = "444dc2aadea3c80310a509b690097541573f6d2652c573d04da66a0f385fcfb2";
|
2017-11-25 23:49:11 +00:00
|
|
|
})
|
2017-11-03 14:38:33 +00:00
|
|
|
];
|
|
|
|
|
2020-03-14 07:32:47 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace configure --replace 'enchant >=' 'enchant-2 >='
|
|
|
|
'';
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
|
2013-10-05 14:22:46 +00:00
|
|
|
|
2018-03-29 08:25:32 +00:00
|
|
|
buildInputs = [
|
|
|
|
gtk3 librsvg bzip2 fribidi libpng popt
|
2021-05-07 21:18:14 +00:00
|
|
|
libgsf enchant wv libjpeg perl boost libxslt goffice gnome.adwaita-icon-theme
|
2018-03-29 08:25:32 +00:00
|
|
|
];
|
2015-06-11 19:06:35 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-06-23 10:44:21 +00:00
|
|
|
description = "Word processing program, similar to Microsoft Word";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.abisource.com/";
|
2014-06-23 10:54:46 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2020-03-14 07:32:47 +00:00
|
|
|
maintainers = with maintainers; [ pSub ylwghst sna ];
|
2013-10-05 14:22:46 +00:00
|
|
|
};
|
2006-07-08 12:44:00 +00:00
|
|
|
}
|