mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, gtk3, fribidi
|
|
, libpng, popt, libgsf, enchant, wv, librsvg, bzip2, libjpeg, perl
|
|
, boost, libxslt, goffice, wrapGAppsHook, gnome3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "abiword";
|
|
version = "3.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.abisource.com/downloads/abiword/${version}/source/${pname}-${version}.tar.gz";
|
|
sha256 = "08imry821g81apdwym3gcs4nss0l9j5blqk31j5rv602zmcd9gxg";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
patches = [
|
|
# https://bugzilla.abisource.com/show_bug.cgi?id=13791
|
|
(fetchurl {
|
|
url = https://bugzilla.abisource.com/attachment.cgi?id=5860;
|
|
sha256 = "02p8kz02xm1197zcpzjs010mna9hxsbq5lwgxr8b7qhh9yxja7al";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
|
|
|
buildInputs = [
|
|
gtk3 librsvg bzip2 fribidi libpng popt
|
|
libgsf enchant wv libjpeg perl boost libxslt goffice gnome3.adwaita-icon-theme
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Word processing program, similar to Microsoft Word";
|
|
homepage = https://www.abisource.com/;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ pSub ylwghst ];
|
|
};
|
|
}
|