2023-03-11 19:25:10 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkg-config
|
|
|
|
, gtk3
|
|
|
|
, fribidi
|
|
|
|
, libpng
|
|
|
|
, popt
|
|
|
|
, libgsf
|
|
|
|
, enchant
|
|
|
|
, wv
|
|
|
|
, librsvg
|
|
|
|
, bzip2
|
|
|
|
, libjpeg
|
|
|
|
, perl
|
|
|
|
, boost
|
|
|
|
, libxslt
|
|
|
|
, goffice
|
|
|
|
, wrapGAppsHook
|
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";
|
2022-01-02 12:01:02 +00:00
|
|
|
version = "3.0.5";
|
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";
|
2022-01-02 12:01:02 +00:00
|
|
|
hash = "sha256-ElckfplwUI1tFFbT4zDNGQnEtCsl4PChvDJSbW86IbQ=";
|
2006-07-08 12:44:00 +00:00
|
|
|
};
|
|
|
|
|
2023-03-11 19:25:10 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
wrapGAppsHook
|
2023-04-17 00:40:56 +00:00
|
|
|
perl
|
2023-03-11 19:25:10 +00:00
|
|
|
];
|
2013-10-05 14:22:46 +00:00
|
|
|
|
2018-03-29 08:25:32 +00:00
|
|
|
buildInputs = [
|
2023-03-11 19:25:10 +00:00
|
|
|
gtk3
|
|
|
|
librsvg
|
|
|
|
bzip2
|
|
|
|
fribidi
|
|
|
|
libpng
|
|
|
|
popt
|
|
|
|
libgsf
|
|
|
|
enchant
|
|
|
|
wv
|
|
|
|
libjpeg
|
|
|
|
boost
|
|
|
|
libxslt
|
|
|
|
goffice
|
2018-03-29 08:25:32 +00:00
|
|
|
];
|
2015-06-11 19:06:35 +00:00
|
|
|
|
2023-04-18 02:59:00 +00:00
|
|
|
strictDeps = true;
|
2023-03-11 19:25:10 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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
|
|
|
}
|