summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2016-10-29 13:46:23 +0200
committerGitHub <noreply@github.com>2016-10-29 13:46:23 +0200
commite6df5614a902033fb2745403c45d500ba3cb0911 (patch)
tree08ca3693d503f8374df9e0d10250a5318da2cb98 /pkgs/applications/misc
parentffb5f5a140064abd8baa475ebf31609460ce2db8 (diff)
parent03457629cf63d0304b765c8c9de333343cd4a921 (diff)
downloadnixlib-e6df5614a902033fb2745403c45d500ba3cb0911.tar
nixlib-e6df5614a902033fb2745403c45d500ba3cb0911.tar.gz
nixlib-e6df5614a902033fb2745403c45d500ba3cb0911.tar.bz2
nixlib-e6df5614a902033fb2745403c45d500ba3cb0911.tar.lz
nixlib-e6df5614a902033fb2745403c45d500ba3cb0911.tar.xz
nixlib-e6df5614a902033fb2745403c45d500ba3cb0911.tar.zst
nixlib-e6df5614a902033fb2745403c45d500ba3cb0911.zip
Merge pull request #19959 from groxxda/tnef
tnef: remove duplicate file
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/tnef/tnef/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/applications/misc/tnef/tnef/default.nix b/pkgs/applications/misc/tnef/tnef/default.nix
deleted file mode 100644
index 3256ed1a5706..000000000000
--- a/pkgs/applications/misc/tnef/tnef/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ fetchurl, lib }:
-
-stdenv.mkDerivation rec {
-  version = "1.4.12";
-  name = "tnef-${version}";
-
-  src = fetchFromGitHub {
-    owner = "verdammelt";
-    repo = "tnef";
-    rev = "${version}";
-    sha256 = "0ssi2wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i";
-  };
-
-  doCheck = true;
-
-  meta = with 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 = [ maintainers.DamienCassou ];
-    platforms = platforms.all;
-  };
-}