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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, sane-backends, qtbase, qtsvg, nss, autoPatchelfHook, lib, wrapQtAppsHook }:
2018-08-13 11:16:11 +02:00
stdenv.mkDerivation rec {
2019-08-13 23:52:01 +02:00
pname = "masterpdfeditor";
2022-04-05 04:09:35 +02:00
version = "5.8.46";
2018-08-13 11:16:11 +02:00
2018-04-27 09:30:57 +02:00
src = fetchurl {
2021-02-02 18:47:42 +01:00
url = "https://code-industry.net/public/master-pdf-editor-${version}-qt5.x86_64.tar.gz";
2022-04-05 04:09:35 +02:00
sha256 = "sha256-xms4aqIxYXR6v226RMf+abrFU1xz2aDIL6iQ+Yfff1k=";
2018-04-27 09:30:57 +02:00
};
nativeBuildInputs = [ autoPatchelfHook wrapQtAppsHook ];
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;
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 lib; {
2018-04-27 09:30:57 +02:00
description = "Master PDF Editor";
homepage = "https://code-industry.net/free-pdf-editor/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
2018-04-27 09:30:57 +02:00
license = licenses.unfreeRedistributable;
platforms = with platforms; [ "x86_64-linux" ];
maintainers = with maintainers; [ cmcdragonkai ];
2018-04-27 09:30:57 +02:00
};
}