nixpkgs/pkgs/applications/misc/masterpdfeditor/default.nix

54 lines
1.7 KiB
Nix
Raw Normal View History

2018-09-12 21:35:16 +02:00
{ stdenv, fetchurl, sane-backends, qtbase, qtsvg, nss, autoPatchelfHook, lib, makeWrapper }:
2018-08-13 11:16:11 +02:00
2018-04-27 09:30:57 +02:00
let
2019-05-01 14:32:31 +02:00
version = "5.4.10";
2018-08-13 11:16:11 +02:00
2018-04-27 09:30:57 +02:00
in stdenv.mkDerivation {
name = "masterpdfeditor-${version}";
2018-08-13 11:16:11 +02:00
2018-04-27 09:30:57 +02:00
src = fetchurl {
url = "https://code-industry.net/public/master-pdf-editor-${version}_qt5.amd64.tar.gz";
2019-05-01 14:32:31 +02:00
sha256 = "1902ahb2g9xanrip1n0ihr31az8sv9fsvzddnzf70kbwlfclnqf7";
2018-04-27 09:30:57 +02:00
};
2018-09-12 21:35:16 +02:00
nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
2018-04-27 09:30:57 +02:00
buildInputs = [ nss qtbase qtsvg sane-backends stdenv.cc.cc ];
2018-04-27 09:30:57 +02:00
dontStrip = true;
# Please remove this when #44047 is fixed
2018-09-12 21:35:16 +02:00
postInstall = ''
wrapProgram $out/bin/masterpdfeditor5 --prefix QT_PLUGIN_PATH : ${lib.getBin qtbase}/${qtbase.qtPluginPrefix}
2018-09-12 21:35:16 +02:00
'';
2018-04-27 09:30:57 +02:00
installPhase = ''
2018-08-13 11:16:11 +02:00
runHook preInstall
p=$out/opt/masterpdfeditor
mkdir -p $out/bin
2018-04-27 09:30:57 +02:00
2018-08-13 11:16:11 +02:00
substituteInPlace masterpdfeditor5.desktop \
--replace 'Exec=/opt/master-pdf-editor-5' "Exec=$out/bin" \
--replace 'Path=/opt/master-pdf-editor-5' "Path=$out/bin" \
--replace 'Icon=/opt/master-pdf-editor-5' "Icon=$out/share/pixmaps"
2018-04-27 09:30:57 +02:00
2018-08-13 11:16:11 +02:00
install -Dm644 -t $out/share/pixmaps masterpdfeditor5.png
install -Dm644 -t $out/share/applications masterpdfeditor5.desktop
install -Dm755 -t $p masterpdfeditor5
install -Dm644 license.txt $out/share/$name/LICENSE
ln -s $p/masterpdfeditor5 $out/bin/masterpdfeditor5
cp -v -r stamps templates lang fonts $p
2018-04-27 09:30:57 +02:00
2018-08-13 11:16:11 +02:00
runHook postInstall
2018-04-27 09:30:57 +02:00
'';
meta = with stdenv.lib; {
description = "Master PDF Editor";
homepage = "https://code-industry.net/free-pdf-editor/";
license = licenses.unfreeRedistributable;
platforms = with platforms; [ "x86_64-linux" ];
maintainers = with maintainers; [ cmcdragonkai flokli ];
};
}