ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, qtsvg, qtwebengine, wrapQtAppsHook, qttools }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pageedit";
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Sigil-Ebook";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-zwOSt1eyvuuqfQ1G2bCB4yj6GgixFRc2FLOgcCrdg3Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake wrapQtAppsHook qttools ];
|
|
propagatedBuildInputs = [ qtsvg qtwebengine ];
|
|
cmakeFlags = [ "-DINSTALL_BUNDLED_DICTS=0" ];
|
|
|
|
installPhase =
|
|
if stdenv.isDarwin then ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/Applications
|
|
cp -r bin/PageEdit.app $out/Applications
|
|
makeWrapper $out/Applications/PageEdit.app/Contents/MacOS/PageEdit $out/bin/pageedit
|
|
|
|
runHook postInstall
|
|
'' else null;
|
|
|
|
meta = with lib; {
|
|
description = "ePub XHTML Visual Editor";
|
|
mainProgram = "pageedit";
|
|
homepage = "https://sigil-ebook.com/pageedit/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.pasqui23 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|