tnef: clean up

This commit is contained in:
Peter Hoeg
2017-05-11 15:07:00 +08:00
parent a856d476ec
commit cd8088be25
+6 -6
View File
@@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub, lib, autoreconfHook }: { stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.4.14"; version = "1.4.14";
name = "tnef-${version}"; name = "tnef-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "verdammelt"; owner = "verdammelt";
repo = "tnef"; repo = "tnef";
rev = "${version}"; rev = version;
sha256 = "0p7yji5hqq7k4pcba1cnv4jkl0fkg7jd77c1q164wk0vwinpmsc2"; sha256 = "0p7yji5hqq7k4pcba1cnv4jkl0fkg7jd77c1q164wk0vwinpmsc2";
}; };
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook ];
meta = with lib; { meta = with stdenv.lib; {
description = "Unpacks MIME attachments of type application/ms-tnef"; description = "Unpacks MIME attachments of type application/ms-tnef";
longDescription = '' longDescription = ''
TNEF is a program for unpacking MIME attachments of type "application/ms-tnef". This is a Microsoft only attachment. TNEF is a program for unpacking MIME attachments of type "application/ms-tnef". This is a Microsoft only attachment.
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
''; '';
homepage = https://github.com/verdammelt/tnef; homepage = https://github.com/verdammelt/tnef;
license = licenses.gpl2; license = licenses.gpl2;
maintainers = [ ]; maintainers = [ peterhoeg ];
platforms = platforms.all; platforms = platforms.all;
}; };
} }