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

44 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, mkDerivation, fetchFromGitHub, cmake, pkgconfig, makeWrapper
2016-07-05 10:58:26 +00:00
, boost, xercesc
2015-12-20 02:24:29 +00:00
, qtbase, qttools, qtwebkit, qtxmlpatterns
2016-07-05 10:58:26 +00:00
, python3, python3Packages
2014-10-07 13:53:21 +00:00
}:
mkDerivation rec {
pname = "sigil";
version = "0.9.14";
2014-10-07 13:53:21 +00:00
2016-07-05 10:58:26 +00:00
src = fetchFromGitHub {
sha256 = "0fmfbfpnmhclbbv9cbr1xnv97si6ls7331kk3ix114iqkngqwgl1";
2016-07-05 10:58:26 +00:00
rev = version;
repo = "Sigil";
owner = "Sigil-Ebook";
2014-10-07 13:53:21 +00:00
};
2016-07-05 10:58:26 +00:00
pythonPath = with python3Packages; [ lxml ];
2017-03-20 00:37:21 +00:00
nativeBuildInputs = [ cmake pkgconfig makeWrapper ];
2014-10-07 13:53:21 +00:00
buildInputs = [
2016-07-05 10:58:26 +00:00
boost xercesc qtbase qttools qtwebkit qtxmlpatterns
python3Packages.lxml ];
dontWrapQtApps = true;
2014-10-07 13:53:21 +00:00
2016-07-05 10:58:26 +00:00
preFixup = ''
wrapProgram "$out/bin/sigil" \
--prefix PYTHONPATH : $PYTHONPATH \
''${qtWrapperArgs[@]}
2014-10-07 13:53:21 +00:00
'';
2016-07-05 10:58:26 +00:00
enableParallelBuilding = true;
2017-03-20 00:37:21 +00:00
meta = with stdenv.lib; {
2014-10-07 13:53:21 +00:00
description = "Free, open source, multi-platform ebook (ePub) editor";
homepage = "https://github.com/Sigil-Ebook/Sigil/";
2017-03-20 00:37:21 +00:00
license = licenses.gpl3;
# currently unmaintained
2017-03-20 00:37:21 +00:00
platforms = platforms.linux;
2014-10-07 13:53:21 +00:00
};
}