nixpkgs-suyu/pkgs/applications/editors/sigil/default.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, cmake, pkg-config, makeWrapper
, boost, xercesc, hunspell, zlib, pcre16
, qtbase, qttools, qtwebengine, qtxmlpatterns
, python3Packages
2014-10-07 15:53:21 +02:00
}:
mkDerivation rec {
pname = "sigil";
2021-12-07 03:10:56 +01:00
version = "1.8.0";
2014-10-07 15:53:21 +02:00
2016-07-05 12:58:26 +02:00
src = fetchFromGitHub {
repo = "Sigil";
owner = "Sigil-Ebook";
rev = version;
2021-12-07 03:10:56 +01:00
sha256 = "sha256-luX4/KERB4GwpID7zVnd6F/mN8SHTy9zmqSUzJ1CYPk=";
2014-10-07 15:53:21 +02:00
};
2016-07-05 12:58:26 +02:00
pythonPath = with python3Packages; [ lxml ];
nativeBuildInputs = [ cmake pkg-config makeWrapper ];
2017-03-20 01:37:21 +01:00
2014-10-07 15:53:21 +02:00
buildInputs = [
boost xercesc qtbase qttools qtwebengine qtxmlpatterns
python3Packages.lxml
];
prePatch = ''
sed -i '/^QTLIB_DIR=/ d' src/Resource_Files/bash/sigil-sh_install
'';
dontWrapQtApps = true;
2014-10-07 15:53:21 +02:00
2016-07-05 12:58:26 +02:00
preFixup = ''
wrapProgram "$out/bin/sigil" \
--prefix PYTHONPATH : $PYTHONPATH \
''${qtWrapperArgs[@]}
2014-10-07 15:53:21 +02:00
'';
meta = with lib; {
2014-10-07 15:53:21 +02:00
description = "Free, open source, multi-platform ebook (ePub) editor";
homepage = "https://github.com/Sigil-Ebook/Sigil/";
2017-03-20 01:37:21 +01:00
license = licenses.gpl3;
# currently unmaintained
2017-03-20 01:37:21 +01:00
platforms = platforms.linux;
2014-10-07 15:53:21 +02:00
};
}