0eeabdeb66
GitOrigin-RevId: c07b471b52be8fbc49a7dc194e9b37a6e19ee04d
42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
{ program ? "pdfstudioviewer"
|
|
, fetchurl
|
|
, libgccjit
|
|
, callPackage
|
|
}:
|
|
|
|
{
|
|
pdfstudio = callPackage ./common.nix rec {
|
|
pname = program;
|
|
year = "2021";
|
|
version = "${year}.1.2";
|
|
desktopName = "PDF Studio";
|
|
longDescription = ''
|
|
PDF Studio is an easy to use, full-featured PDF editing software. This is the standard/pro edition, which requires a license. For the free PDF Studio Viewer see the package pdfstudioviewer.
|
|
'';
|
|
extraBuildInputs = [
|
|
libgccjit #for libstdc++.so.6 and libgomp.so.1
|
|
];
|
|
src = fetchurl {
|
|
url = "https://download.qoppa.com/${pname}/v${year}/PDFStudio_v${
|
|
builtins.replaceStrings [ "." ] [ "_" ] version
|
|
}_linux64.deb";
|
|
sha256 = "1188ll2qz58rr2slavqxisbz4q3fdzidpasb1p33926z0ym3rk45";
|
|
};
|
|
};
|
|
|
|
pdfstudioviewer = callPackage ./common.nix rec {
|
|
pname = program;
|
|
year = "2021";
|
|
version = "${year}.1.2";
|
|
desktopName = "PDF Studio Viewer";
|
|
longDescription = ''
|
|
PDF Studio Viewer is an easy to use, full-featured PDF editing software. This is the free edition. For the standard/pro edition, see the package pdfstudio.
|
|
'';
|
|
src = fetchurl {
|
|
url = "https://download.qoppa.com/${pname}/v${year}/PDFStudioViewer_v${
|
|
builtins.replaceStrings [ "." ] [ "_" ] version
|
|
}_linux64.deb";
|
|
sha256 = "128k3fm8m8zdykx4s30g5m2zl7cgmvs4qinf1w525zh84v56agz6";
|
|
};
|
|
};
|
|
}.${program}
|