mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 21:23:06 +00:00
64 lines
996 B
Nix
64 lines
996 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, gtk3
|
|
, fribidi
|
|
, libpng
|
|
, popt
|
|
, libgsf
|
|
, enchant
|
|
, wv
|
|
, librsvg
|
|
, bzip2
|
|
, libjpeg
|
|
, perl
|
|
, boost
|
|
, libxslt
|
|
, goffice
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "abiword";
|
|
version = "3.0.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.abisource.com/downloads/abiword/${version}/source/${pname}-${version}.tar.gz";
|
|
hash = "sha256-ElckfplwUI1tFFbT4zDNGQnEtCsl4PChvDJSbW86IbQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wrapGAppsHook
|
|
perl
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
librsvg
|
|
bzip2
|
|
fribidi
|
|
libpng
|
|
popt
|
|
libgsf
|
|
enchant
|
|
wv
|
|
libjpeg
|
|
boost
|
|
libxslt
|
|
goffice
|
|
];
|
|
|
|
strictDeps = true;
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with 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 sna ];
|
|
};
|
|
}
|