summary refs log tree commit diff
path: root/pkgs/applications/misc/tnef
diff options
context:
space:
mode:
authorAlexander Ried <ried@mytum.de>2016-10-29 07:25:07 +0200
committerAlexander Ried <ried@mytum.de>2016-10-29 07:25:49 +0200
commit03457629cf63d0304b765c8c9de333343cd4a921 (patch)
tree3ea969d5dfa00751ec18ac129b045c87323a8baf /pkgs/applications/misc/tnef
parentc60b3e4bfc94c567db5d68eaaf6c8c1bbb9d43ee (diff)
downloadnixlib-03457629cf63d0304b765c8c9de333343cd4a921.tar
nixlib-03457629cf63d0304b765c8c9de333343cd4a921.tar.gz
nixlib-03457629cf63d0304b765c8c9de333343cd4a921.tar.bz2
nixlib-03457629cf63d0304b765c8c9de333343cd4a921.tar.lz
nixlib-03457629cf63d0304b765c8c9de333343cd4a921.tar.xz
nixlib-03457629cf63d0304b765c8c9de333343cd4a921.tar.zst
nixlib-03457629cf63d0304b765c8c9de333343cd4a921.zip
tnef: remove duplicate file
Diffstat (limited to 'pkgs/applications/misc/tnef')
-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;
-  };
-}