about summary refs log tree commit diff
path: root/pkgs/applications/misc/pdfstudio/default.nix
blob: dcb35c41da76668e4c116497df3665d521f81fc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{ stdenv,
  lib,
  makeWrapper,
  fetchurl,
  dpkg,
  makeDesktopItem,
  copyDesktopItems,
  autoPatchelfHook,
  gst_all_1,
  sane-backends,
  xorg,
  gnome2,
  alsa-lib,
  libgccjit,
  jdk11
  }:

let
  year = "2021";
  major = "1";
  minor = "1";
in stdenv.mkDerivation rec {
  pname = "pdfstudio";
  version = "${year}.${major}.${minor}";
  autoPatchelfIgnoreMissingDeps = true;

  src = fetchurl {
    url = "https://download.qoppa.com/${pname}/v${year}/PDFStudio_v${year}_${major}_${minor}_linux64.deb";
    sha256 = "089jfpbsxwjhx245g8svlmg213kny3z5nl6ra1flishnrsfjjcxb";
  };

  nativeBuildInputs = [
    gst_all_1.gst-libav
    sane-backends
    xorg.libXxf86vm
    xorg.libXtst
    gnome2.libgtkhtml
    alsa-lib
    libgccjit
    autoPatchelfHook
    makeWrapper
    dpkg
    copyDesktopItems
    jdk11 # only for unpacking .jar.pack files
  ];

  desktopItems = [(makeDesktopItem {
       name = "${pname}${year}";
       desktopName = "PDF Studio";
       genericName = "View and edit PDF files";
       exec = "${pname} %f";
       icon = "${pname}${year}";
       comment = "Views and edits PDF files";
       mimeType = "application/pdf";
       categories = "Office";
       type = "Application";
       terminal = false;
  })];

  unpackPhase = "dpkg-deb -x $src .";
  dontConfigure = true;
  dontBuild = true;

  installPhase = ''
    runHook preInstall

    mkdir -p $out/bin
    mkdir -p $out/share
    mkdir -p $out/share/applications
    mkdir -p $out/share/pixmaps
    cp -r opt/${pname}${year} $out/share/
    ln -s $out/share/${pname}${year}/.install4j/${pname}${year}.png  $out/share/pixmaps/
    makeWrapper $out/share/${pname}${year}/${pname}${year} $out/bin/${pname}

    #Unpack jar files. Otherwise pdfstudio does this and fails due to read-only FS.
    for pfile in $out/share/${pname}${year}/jre/lib/{,ext/}*.jar.pack; do
      jar_file=`echo "$pfile" | awk '{ print substr($0,1,length($0)-5) }'`
      unpack200 -r "$pfile" "$jar_file"
    done

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://www.qoppa.com/pdfstudio/";
    description = "An easy to use, full-featured PDF editing software";
    license = licenses.unfree;
    platforms = platforms.linux;
    maintainers = [ maintainers.pwoelfel ];
  };
}