2014-09-26 13:26:32 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk3, libglade, libgnomecanvas, fribidi
|
|
|
|
, libpng, popt, libgsf, enchant, wv, librsvg, bzip2, libjpeg, perl
|
2015-06-11 12:06:35 -07:00
|
|
|
, boost, libxslt, goffice, makeWrapper, iconTheme
|
2006-07-08 05:44:00 -07:00
|
|
|
}:
|
|
|
|
|
2014-09-26 13:26:32 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "abiword-${version}";
|
2015-01-18 09:19:49 -08:00
|
|
|
version = "3.0.1";
|
2012-12-11 21:02:05 -08:00
|
|
|
|
2006-07-08 05:44:00 -07:00
|
|
|
src = fetchurl {
|
2014-09-26 13:26:32 -07:00
|
|
|
url = "http://www.abisource.org/downloads/abiword/${version}/source/${name}.tar.gz";
|
2015-01-18 09:19:49 -08:00
|
|
|
sha256 = "1ik591rx15nn3n1297cwykl8wvrlgj78i528id9wbidgy3xzd570";
|
2006-07-08 05:44:00 -07:00
|
|
|
};
|
|
|
|
|
2012-12-11 21:02:50 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2010-07-28 08:35:01 -07:00
|
|
|
buildInputs =
|
2014-09-26 13:26:32 -07:00
|
|
|
[ pkgconfig gtk3 libglade librsvg bzip2 libgnomecanvas fribidi libpng popt
|
2015-06-11 12:06:35 -07:00
|
|
|
libgsf enchant wv libjpeg perl boost libxslt goffice makeWrapper iconTheme
|
2010-07-28 08:35:01 -07:00
|
|
|
];
|
2013-10-05 07:22:46 -07:00
|
|
|
|
2015-06-11 12:06:35 -07:00
|
|
|
postFixup = ''
|
|
|
|
wrapProgram "$out/bin/abiword" \
|
|
|
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
|
|
|
|
'';
|
|
|
|
|
2014-06-23 03:54:46 -07:00
|
|
|
meta = with stdenv.lib; {
|
2014-06-23 03:44:21 -07:00
|
|
|
description = "Word processing program, similar to Microsoft Word";
|
2014-06-23 03:54:46 -07:00
|
|
|
homepage = http://www.abisource.com/;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2014-09-26 13:26:32 -07:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2013-10-05 07:22:46 -07:00
|
|
|
};
|
2006-07-08 05:44:00 -07:00
|
|
|
}
|