Files
Ihar HrachyshkaandWolfgang Walther 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

49 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
makeWrapper,
unzip,
jre,
runtimeShell,
}:
stdenv.mkDerivation rec {
version = "1.9";
pname = "msgviewer";
uname = "MSGViewer";
src = fetchurl {
url = "mirror://sourceforge/msgviewer/${uname}-${version}/${uname}-${version}.zip";
sha256 = "0igmr8c0757xsc94xlv2470zv2mz57zaj52dwr9wj8agmj23jbjz";
};
buildCommand = ''
dir=$out/lib/msgviewer
mkdir -p $out/bin $dir
unzip $src -d $dir
mv $dir/${uname}-${version}/* $dir
rmdir $dir/${uname}-${version}
cat <<_EOF > $out/bin/msgviewer
#!${runtimeShell} -eu
exec ${lib.getBin jre}/bin/java -jar $dir/MSGViewer.jar "\$@"
_EOF
chmod 755 $out/bin/msgviewer
'';
nativeBuildInputs = [
makeWrapper
unzip
];
meta = {
description = "Viewer for .msg files (MS Outlook)";
mainProgram = "msgviewer";
homepage = "https://www.washington.edu/alpine/";
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ peterhoeg ];
platforms = lib.platforms.all;
};
}