aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/editors/sigil/default.nix
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2020-08-15 20:43:55 +0100
committerRobert Scott <code@humanleg.org.uk>2020-08-15 21:51:56 +0100
commit1fb0a04c12615b3cf0f2a3de1236d8445c713710 (patch)
tree9df0b5830e78b8a306d7ccd9d90135ae29170b37 /pkgs/applications/editors/sigil/default.nix
parentb7be00ad5ed0cdbba73fa7fd7fadcb842831f137 (diff)
sigil: 0.9.14 -> 1.3.0
addressing CVE-2019-14452 package still needs some proper maintenance love e.g. elimination of vendored libs. this will have to do for now.
Diffstat (limited to 'pkgs/applications/editors/sigil/default.nix')
-rw-r--r--pkgs/applications/editors/sigil/default.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/applications/editors/sigil/default.nix b/pkgs/applications/editors/sigil/default.nix
index cbb9f7bd5b87..869c20c1d6c4 100644
--- a/pkgs/applications/editors/sigil/default.nix
+++ b/pkgs/applications/editors/sigil/default.nix
@@ -1,18 +1,18 @@
{ stdenv, mkDerivation, fetchFromGitHub, cmake, pkgconfig, makeWrapper
-, boost, xercesc
-, qtbase, qttools, qtwebkit, qtxmlpatterns
-, python3, python3Packages
+, boost, xercesc, hunspell, zlib, pcre16
+, qtbase, qttools, qtwebengine, qtxmlpatterns
+, python3Packages
}:
mkDerivation rec {
pname = "sigil";
- version = "0.9.14";
+ version = "1.3.0";
src = fetchFromGitHub {
- sha256 = "0fmfbfpnmhclbbv9cbr1xnv97si6ls7331kk3ix114iqkngqwgl1";
- rev = version;
repo = "Sigil";
owner = "Sigil-Ebook";
+ rev = version;
+ sha256 = "02bkyi9xpaxdcivm075y3praxgvfay9z0189gvr6g8yc3ml1miyr";
};
pythonPath = with python3Packages; [ lxml ];
@@ -20,8 +20,9 @@ mkDerivation rec {
nativeBuildInputs = [ cmake pkgconfig makeWrapper ];
buildInputs = [
- boost xercesc qtbase qttools qtwebkit qtxmlpatterns
- python3Packages.lxml ];
+ boost xercesc qtbase qttools qtwebengine qtxmlpatterns
+ python3Packages.lxml
+ ];
dontWrapQtApps = true;