mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
86 lines
1.4 KiB
Nix
86 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, fetchpatch
|
|
, autoreconfHook269
|
|
, autoconf-archive
|
|
, pkg-config
|
|
, gtk3
|
|
, fribidi
|
|
, libpng
|
|
, popt
|
|
, libgsf
|
|
, enchant
|
|
, wv
|
|
, librsvg
|
|
, bzip2
|
|
, libjpeg
|
|
, perl
|
|
, boost
|
|
, libxslt
|
|
, goffice
|
|
, wrapGAppsHook3
|
|
, gitUpdater
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "abiword";
|
|
version = "3.0.6";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "World";
|
|
repo = "AbiWord";
|
|
rev = "refs/tags/release-${version}";
|
|
hash = "sha256-PPK4O+NKXdl7DKPOgGlVyCFTol8hhmtq0wdTTtwKQ/4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook269
|
|
autoconf-archive
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
perl
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
librsvg
|
|
bzip2
|
|
fribidi
|
|
libpng
|
|
popt
|
|
libgsf
|
|
enchant
|
|
wv
|
|
libjpeg
|
|
boost
|
|
libxslt
|
|
goffice
|
|
];
|
|
|
|
strictDeps = true;
|
|
enableParallelBuilding = true;
|
|
|
|
postPatch = ''
|
|
patchShebangs ./tools/cdump/xp/cdump.pl ./po/ui-backport.pl
|
|
'';
|
|
|
|
preAutoreconf = ''
|
|
./autogen-common.sh
|
|
'';
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
rev-prefix = "release-";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Word processing program, similar to Microsoft Word";
|
|
mainProgram = "abiword";
|
|
homepage = "https://gitlab.gnome.org/World/AbiWord/";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ pSub ylwghst sna ];
|
|
};
|
|
}
|