Skip to content

Commit

Permalink
freeoffice: 2021.1054 -> 2024.1220; softmaker-office: 2021.1032 -> 20…
Browse files Browse the repository at this point in the history
…24.1222 (NixOS#366478)
  • Loading branch information
GaetanLepage authored Dec 19, 2024
2 parents c6e048d + 53953bb commit 5b68fa0
Show file tree
Hide file tree
Showing 4 changed files with 151 additions and 102 deletions.
6 changes: 5 additions & 1 deletion pkgs/applications/office/softmaker/desktop_items.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{ makeDesktopItem, pname, suiteName }:
{
makeDesktopItem,
pname,
suiteName,
}:

{
planmaker = makeDesktopItem {
Expand Down
41 changes: 23 additions & 18 deletions pkgs/applications/office/softmaker/freeoffice.nix
Original file line number Diff line number Diff line change
@@ -1,27 +1,32 @@
{ callPackage
, fetchurl
{
callPackage,
fetchurl,

# This is a bit unusual, but makes version and hash easily
# overridable. This is useful when the upstream archive was replaced
# and nixpkgs is not in sync yet.
, officeVersion ? {
version = "1054";
edition = "2021";
hash = "sha256-dqmJUm0Qi1/GzGrI4OCHo1LwQ5KxMwZZw5EsYTMF6XU=";
}
officeVersion ? {
version = "1220";
edition = "2024";
hash = "sha256-F1Srm3/4UPifYls21MhjbpxSyLaT0gEVzEMQF0gIzi0=";
},

, ... } @ args:
...
}@args:

callPackage ./generic.nix (args // rec {
inherit (officeVersion) version edition;
callPackage ./generic.nix (
args
// rec {
inherit (officeVersion) version edition;

pname = "freeoffice";
suiteName = "FreeOffice";
pname = "freeoffice";
suiteName = "FreeOffice";

src = fetchurl {
inherit (officeVersion) hash;
url = "https://www.softmaker.net/down/softmaker-freeoffice-${edition}-${version}-amd64.tgz";
};
src = fetchurl {
inherit (officeVersion) hash;
url = "https://www.softmaker.net/down/softmaker-freeoffice-${edition}-${version}-amd64.tgz";
};

archive = "freeoffice${edition}.tar.lzma";
})
archive = "freeoffice${edition}.tar.lzma";
}
)
165 changes: 100 additions & 65 deletions pkgs/applications/office/softmaker/generic.nix
Original file line number Diff line number Diff line change
@@ -1,26 +1,49 @@
{ lib, stdenv, autoPatchelfHook, makeDesktopItem, makeWrapper, copyDesktopItems
{
lib,
stdenv,
autoPatchelfHook,
makeDesktopItem,
makeWrapper,
copyDesktopItems,

# Dynamic Libraries
, curl, libGL, libX11, libXext, libXmu, libXrandr, libXrender
curl,
glib,
gst_all_1,
libGL,
libX11,
libXext,
libXmu,
libXrandr,
libXrender,

# For fixing up execution of /bin/ls, which is necessary for
# product unlocking.
, coreutils, libredirect
coreutils,
libredirect,

# Extra utilities used by the SoftMaker applications.
, gnugrep, util-linux, which

, pname, version, edition, suiteName, src, archive

, ...
gnugrep,
util-linux,
which,

pname,
version,
edition,
suiteName,
src,
archive,

...
}:

let
desktopItems = import ./desktop_items.nix {
inherit makeDesktopItem pname suiteName;
};
shortEdition = builtins.substring 2 2 edition;
in stdenv.mkDerivation {
in
stdenv.mkDerivation {
inherit pname src;

version = "${edition}.${version}";
Expand All @@ -33,6 +56,9 @@ in stdenv.mkDerivation {

buildInputs = [
curl
glib
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
libGL
libX11
libXext
Expand All @@ -56,66 +82,75 @@ in stdenv.mkDerivation {
runHook postUnpack
'';

installPhase = let
# SoftMaker/FreeOffice collects some system information upon
# unlocking the product. But in doing so, it attempts to execute
# /bin/ls. If the execve syscall fails, the whole unlock
# procedure fails. This works around that by rewriting /bin/ls
# to the proper path.
#
# In addition, it expects some common utilities (which, whereis)
# to be in the path.
#
# SoftMaker Office restarts itself upon some operations, such
# changing the theme and unlocking. Unfortunately, we do not
# have control over its environment then and it will fail
# with an error.
extraWrapperArgs = ''
--set LD_PRELOAD "${libredirect}/lib/libredirect.so" \
--set NIX_REDIRECTS "/bin/ls=${coreutils}/bin/ls" \
--prefix PATH : "${lib.makeBinPath [ coreutils gnugrep util-linux which ]}"
'';
in ''
runHook preInstall
mkdir -p $out/share
cp -r ${pname} $out/share/${pname}${edition}
# Wrap rather than symlinking, so that the programs can determine
# their resource path.
mkdir -p $out/bin
makeWrapper $out/share/${pname}${edition}/planmaker $out/bin/${pname}-planmaker \
${extraWrapperArgs}
makeWrapper $out/share/${pname}${edition}/presentations $out/bin/${pname}-presentations \
${extraWrapperArgs}
makeWrapper $out/share/${pname}${edition}/textmaker $out/bin/${pname}-textmaker \
${extraWrapperArgs}
for size in 16 32 48 64 96 128 256 512 1024; do
mkdir -p $out/share/icons/hicolor/''${size}x''${size}/apps
for app in pml prl tml; do
ln -s $out/share/${pname}${edition}/icons/''${app}_''${size}.png \
$out/share/icons/hicolor/''${size}x''${size}/apps/${pname}-''${app}.png
done
mkdir -p $out/share/icons/hicolor/''${size}x''${size}/mimetypes
for mimetype in pmd prd tmd; do
ln -s $out/share/${pname}${edition}/icons/''${mimetype}_''${size}.png \
$out/share/icons/hicolor/''${size}x''${size}/mimetypes/application-x-''${mimetype}.png
installPhase =
let
# SoftMaker/FreeOffice collects some system information upon
# unlocking the product. But in doing so, it attempts to execute
# /bin/ls. If the execve syscall fails, the whole unlock
# procedure fails. This works around that by rewriting /bin/ls
# to the proper path.
#
# In addition, it expects some common utilities (which, whereis)
# to be in the path.
#
# SoftMaker Office restarts itself upon some operations, such
# changing the theme and unlocking. Unfortunately, we do not
# have control over its environment then and it will fail
# with an error.
extraWrapperArgs = ''
--set LD_PRELOAD "${libredirect}/lib/libredirect.so" \
--set NIX_REDIRECTS "/bin/ls=${coreutils}/bin/ls" \
--prefix PATH : "${
lib.makeBinPath [
coreutils
gnugrep
util-linux
which
]
}"
'';
in
''
runHook preInstall
mkdir -p $out/share
cp -r ${pname} $out/share/${pname}${edition}
# Wrap rather than symlinking, so that the programs can determine
# their resource path.
mkdir -p $out/bin
makeWrapper $out/share/${pname}${edition}/planmaker $out/bin/${pname}-planmaker \
${extraWrapperArgs}
makeWrapper $out/share/${pname}${edition}/presentations $out/bin/${pname}-presentations \
${extraWrapperArgs}
makeWrapper $out/share/${pname}${edition}/textmaker $out/bin/${pname}-textmaker \
${extraWrapperArgs}
for size in 16 32 48 64 96 128 256 512 1024; do
mkdir -p $out/share/icons/hicolor/''${size}x''${size}/apps
for app in pml prl tml; do
ln -s $out/share/${pname}${edition}/icons/''${app}_''${size}.png \
$out/share/icons/hicolor/''${size}x''${size}/apps/${pname}-''${app}.png
done
mkdir -p $out/share/icons/hicolor/''${size}x''${size}/mimetypes
for mimetype in pmd prd tmd; do
ln -s $out/share/${pname}${edition}/icons/''${mimetype}_''${size}.png \
$out/share/icons/hicolor/''${size}x''${size}/mimetypes/application-x-''${mimetype}.png
done
done
done
# freeoffice 973 misses the 96x96 application icons, giving broken symbolic links
# remove broken symbolic links
find $out -xtype l -ls -exec rm {} \;
# freeoffice 973 misses the 96x96 application icons, giving broken symbolic links
# remove broken symbolic links
find $out -xtype l -ls -exec rm {} \;
# Add mime types
install -D -t $out/share/mime/packages ${pname}/mime/softmaker-*office*${shortEdition}.xml
# Add mime types
install -D -t $out/share/mime/packages ${pname}/mime/softmaker-*office*${shortEdition}.xml
runHook postInstall
'';
runHook postInstall
'';

desktopItems = builtins.attrValues desktopItems;

Expand Down
41 changes: 23 additions & 18 deletions pkgs/applications/office/softmaker/softmaker_office.nix
Original file line number Diff line number Diff line change
@@ -1,28 +1,33 @@
{ callPackage
, fetchurl
{
callPackage,
fetchurl,

# This is a bit unusual, but makes version and hash easily
# overridable. This is useful when people have an older version of
# Softmaker Office or when the upstream archive was replaced and
# nixpkgs is not in sync yet.
, officeVersion ? {
version = "1032";
edition = "2021";
hash = "sha256-LchSqLVBdkmWJQ8hCEvtwRPgIUSDE0URKPzCkEexGbc=";
}
officeVersion ? {
version = "1222";
edition = "2024";
hash = "sha256-eyYBK5ZxPcBakOvXUQZIU2aftyH6PXh/rtqC/1BJhg4=";
},

, ... } @ args:
...
}@args:

callPackage ./generic.nix (args // rec {
inherit (officeVersion) version edition;
callPackage ./generic.nix (
args
// rec {
inherit (officeVersion) version edition;

pname = "softmaker-office";
suiteName = "SoftMaker Office";
pname = "softmaker-office";
suiteName = "SoftMaker Office";

src = fetchurl {
inherit (officeVersion) hash;
url = "https://www.softmaker.net/down/softmaker-office-${edition}-${version}-amd64.tgz";
};
src = fetchurl {
inherit (officeVersion) hash;
url = "https://www.softmaker.net/down/softmaker-office-${edition}-${version}-amd64.tgz";
};

archive = "office${edition}.tar.lzma";
})
archive = "office${edition}.tar.lzma";
}
)

0 comments on commit 5b68fa0

Please sign in to comment.