427627ea0e
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/sigil/versions
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig, makeWrapper
|
|
, boost, xercesc
|
|
, qtbase, qttools, qtwebkit, qtxmlpatterns
|
|
, python3, python3Packages
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sigil-${version}";
|
|
version = "0.9.14";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "0fmfbfpnmhclbbv9cbr1xnv97si6ls7331kk3ix114iqkngqwgl1";
|
|
rev = version;
|
|
repo = "Sigil";
|
|
owner = "Sigil-Ebook";
|
|
};
|
|
|
|
pythonPath = with python3Packages; [ lxml ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [ lxml ];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig makeWrapper ];
|
|
|
|
buildInputs = [
|
|
boost xercesc qtbase qttools qtwebkit qtxmlpatterns
|
|
python3 python3Packages.lxml ];
|
|
|
|
preFixup = ''
|
|
wrapProgram "$out/bin/sigil" \
|
|
--prefix PYTHONPATH : $PYTHONPATH:$(toPythonPath ${python3Packages.lxml})
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Free, open source, multi-platform ebook (ePub) editor";
|
|
homepage = https://github.com/Sigil-Ebook/Sigil/;
|
|
license = licenses.gpl3;
|
|
maintainers =[ maintainers.ramkromberg ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|