mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
54 lines
1.7 KiB
Nix
54 lines
1.7 KiB
Nix
{ stdenv, fetchurl, sane-backends, qtbase, qtsvg, nss, autoPatchelfHook, lib, makeWrapper }:
|
|
|
|
let
|
|
version = "5.1.60";
|
|
|
|
in stdenv.mkDerivation {
|
|
name = "masterpdfeditor-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://code-industry.net/public/master-pdf-editor-${version}_qt5.amd64.tar.gz";
|
|
sha256 = "0br5f04klzpbd25igbjjj1dqasmrcrw2zsan5bv0ydnr2lmpb2fz";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
|
|
|
|
buildInputs = [ nss qtbase qtsvg sane-backends stdenv.cc.cc ];
|
|
|
|
dontStrip = true;
|
|
|
|
# Please remove this when #44047 is fixed
|
|
postInstall = ''
|
|
wrapProgram $out/bin/masterpdfeditor5 --prefix QT_PLUGIN_PATH : ${lib.getBin qtbase}/${qtbase.qtPluginPrefix}
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
p=$out/opt/masterpdfeditor
|
|
mkdir -p $out/bin
|
|
|
|
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"
|
|
|
|
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
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|