nixpkgs/pkgs/applications/office/bookworm/default.nix

71 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pantheon, vala, python3, python2, pkgconfig, libxml2, meson, ninja, gtk3, gnome3, glib, webkitgtk, libgee
2020-04-13 13:30:13 +00:00
, gobject-introspection, sqlite, poppler, poppler_utils, html2text, curl, gnugrep, coreutils, bash, unzip, unar, wrapGAppsHook
, appstream, desktop-file-utils }:
2018-09-08 07:39:14 +00:00
stdenv.mkDerivation rec {
pname = "bookworm";
2020-04-13 13:30:13 +00:00
version = "1.1.2";
2018-09-08 07:39:14 +00:00
src = fetchFromGitHub {
owner = "babluboy";
repo = pname;
2020-04-13 13:30:13 +00:00
rev = version;
sha256 = "0w0rlyahpgx0l6inkbj106agbnr2czil0vdcy1zzv70apnjz488j";
2018-09-08 07:39:14 +00:00
};
nativeBuildInputs = [
2018-10-31 21:52:35 +00:00
bash
gobject-introspection
2018-09-08 07:39:14 +00:00
libxml2
2018-10-31 21:52:35 +00:00
meson
2018-09-08 07:39:14 +00:00
ninja
pkgconfig
2018-10-31 21:52:35 +00:00
python3
vala
2018-09-08 07:39:14 +00:00
wrapGAppsHook
];
2018-08-20 20:31:18 +00:00
buildInputs = [
pantheon.elementary-icon-theme
pantheon.granite
2018-09-08 07:39:14 +00:00
glib
libgee
2018-09-08 07:39:14 +00:00
gtk3
html2text
poppler
2018-10-31 21:52:35 +00:00
python2
2018-09-08 07:39:14 +00:00
sqlite
webkitgtk
2020-04-13 13:30:13 +00:00
appstream
desktop-file-utils
2018-09-08 07:39:14 +00:00
];
2018-10-31 21:52:35 +00:00
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
# These programs are expected in PATH from the source code and scripts
2018-09-08 07:39:14 +00:00
preFixup = ''
gappsWrapperArgs+=(
2018-10-31 21:52:35 +00:00
--prefix PATH : "${stdenv.lib.makeBinPath [ unzip unar poppler_utils html2text coreutils curl gnugrep ]}"
--prefix PATH : $out/bin
2018-09-08 07:39:14 +00:00
)
'';
2018-10-31 21:52:35 +00:00
postFixup = ''
patchShebangs $out/share/bookworm/scripts/mobi_lib/*.py
patchShebangs $out/share/bookworm/scripts/tasks/*.sh
'';
2018-09-08 07:39:14 +00:00
meta = with stdenv.lib; {
description = "A simple, focused eBook reader";
longDescription = ''
Read the books you love without having to worry about different format complexities like epub, pdf, mobi, cbr, etc.
'';
homepage = "https://babluboy.github.io/bookworm/";
2018-09-08 07:39:14 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}