2021-01-17 02:09:27 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gtk3, fribidi
|
2014-09-26 21:26:32 +01:00
|
|
|
, libpng, popt, libgsf, enchant, wv, librsvg, bzip2, libjpeg, perl
|
2021-05-07 22:18:14 +01:00
|
|
|
, boost, libxslt, goffice, wrapGAppsHook, gnome
|
2006-07-08 13:44:00 +01:00
|
|
|
}:
|
|
|
|
|
2014-09-26 21:26:32 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "abiword";
|
2022-01-02 12:01:02 +00:00
|
|
|
version = "3.0.5";
|
2012-12-12 05:02:05 +00:00
|
|
|
|
2006-07-08 13:44:00 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://www.abisource.com/downloads/abiword/${version}/source/${pname}-${version}.tar.gz";
|
2022-01-02 12:01:02 +00:00
|
|
|
hash = "sha256-ElckfplwUI1tFFbT4zDNGQnEtCsl4PChvDJSbW86IbQ=";
|
2006-07-08 13:44:00 +01:00
|
|
|
};
|
|
|
|
|
2012-12-12 05:02:50 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
|
2013-10-05 15:22:46 +01:00
|
|
|
|
2018-03-29 09:25:32 +01:00
|
|
|
buildInputs = [
|
|
|
|
gtk3 librsvg bzip2 fribidi libpng popt
|
2021-05-07 22:18:14 +01:00
|
|
|
libgsf enchant wv libjpeg perl boost libxslt goffice gnome.adwaita-icon-theme
|
2018-03-29 09:25:32 +01:00
|
|
|
];
|
2015-06-11 20:06:35 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-06-23 11:44:21 +01:00
|
|
|
description = "Word processing program, similar to Microsoft Word";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.abisource.com/";
|
2014-06-23 11:54:46 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2020-03-14 07:32:47 +00:00
|
|
|
maintainers = with maintainers; [ pSub ylwghst sna ];
|
2013-10-05 15:22:46 +01:00
|
|
|
};
|
2006-07-08 13:44:00 +01:00
|
|
|
}
|