2014-09-26 22:26:32 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk3, libglade, libgnomecanvas, fribidi
|
|
|
|
, libpng, popt, libgsf, enchant, wv, librsvg, bzip2, libjpeg, perl
|
|
|
|
, boost, libxslt
|
2006-07-08 14:44:00 +02:00
|
|
|
}:
|
|
|
|
|
2014-09-26 22:26:32 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "abiword-${version}";
|
|
|
|
version = "3.0.0";
|
2012-12-12 06:02:05 +01:00
|
|
|
|
2006-07-08 14:44:00 +02:00
|
|
|
src = fetchurl {
|
2014-09-26 22:26:32 +02:00
|
|
|
url = "http://www.abisource.org/downloads/abiword/${version}/source/${name}.tar.gz";
|
|
|
|
sha256 = "00dc3w48k2z3l1hh5b0jhzfrskqxic4lp6g7w19v6kpz02632zni";
|
2006-07-08 14:44:00 +02:00
|
|
|
};
|
|
|
|
|
2012-12-12 06:02:50 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2010-07-28 17:35:01 +02:00
|
|
|
buildInputs =
|
2014-09-26 22:26:32 +02:00
|
|
|
[ pkgconfig gtk3 libglade librsvg bzip2 libgnomecanvas fribidi libpng popt
|
|
|
|
libgsf enchant wv libjpeg perl boost libxslt
|
2010-07-28 17:35:01 +02:00
|
|
|
];
|
2013-10-05 16:22:46 +02:00
|
|
|
|
2014-06-23 12:54:46 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-06-23 12:44:21 +02:00
|
|
|
description = "Word processing program, similar to Microsoft Word";
|
2014-06-23 12:54:46 +02:00
|
|
|
homepage = http://www.abisource.com/;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2014-09-26 22:26:32 +02:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2013-10-05 16:22:46 +02:00
|
|
|
};
|
2006-07-08 14:44:00 +02:00
|
|
|
}
|