e12d3c9c0b
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/ggbdpmwgrbzr50ck27qh6pd82f2hapd8-tnef-1.4.17/bin/tnef -h` got 0 exit code - ran `/nix/store/ggbdpmwgrbzr50ck27qh6pd82f2hapd8-tnef-1.4.17/bin/tnef --help` got 0 exit code - ran `/nix/store/ggbdpmwgrbzr50ck27qh6pd82f2hapd8-tnef-1.4.17/bin/tnef -V` and found version 1.4.17 - ran `/nix/store/ggbdpmwgrbzr50ck27qh6pd82f2hapd8-tnef-1.4.17/bin/tnef --version` and found version 1.4.17 - ran `/nix/store/ggbdpmwgrbzr50ck27qh6pd82f2hapd8-tnef-1.4.17/bin/tnef -h` and found version 1.4.17 - ran `/nix/store/ggbdpmwgrbzr50ck27qh6pd82f2hapd8-tnef-1.4.17/bin/tnef --help` and found version 1.4.17 - found 1.4.17 with grep in /nix/store/ggbdpmwgrbzr50ck27qh6pd82f2hapd8-tnef-1.4.17 - found 1.4.17 in filename of file in /nix/store/ggbdpmwgrbzr50ck27qh6pd82f2hapd8-tnef-1.4.17 cc "@peterhoeg"
33 lines
1.1 KiB
Nix
33 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.4.17";
|
|
name = "tnef-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "verdammelt";
|
|
repo = "tnef";
|
|
rev = version;
|
|
sha256 = "0cq2xh5wd74qn6k2nnw5rayxgqhjl3jbzf4zlc4babcwxrv32ldh";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Unpacks MIME attachments of type application/ms-tnef";
|
|
longDescription = ''
|
|
TNEF is a program for unpacking MIME attachments of type "application/ms-tnef". This is a Microsoft only attachment.
|
|
|
|
Due to the proliferation of Microsoft Outlook and Exchange mail servers, more and more mail is encapsulated into this format.
|
|
|
|
The TNEF program allows one to unpack the attachments which were encapsulated into the TNEF attachment. Thus alleviating the need to use Microsoft Outlook to view the attachment.
|
|
'';
|
|
homepage = https://github.com/verdammelt/tnef;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|