Skip to content

Commit cd8088b

Browse files
committedMay 11, 2017
tnef: clean up
1 parent a856d47 commit cd8088b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 
+6-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
{ stdenv, fetchFromGitHub, lib, autoreconfHook }:
1+
{ stdenv, fetchFromGitHub, autoreconfHook }:
22

33
stdenv.mkDerivation rec {
44
version = "1.4.14";
55
name = "tnef-${version}";
66

77
src = fetchFromGitHub {
8-
owner = "verdammelt";
9-
repo = "tnef";
10-
rev = "${version}";
8+
owner = "verdammelt";
9+
repo = "tnef";
10+
rev = version;
1111
sha256 = "0p7yji5hqq7k4pcba1cnv4jkl0fkg7jd77c1q164wk0vwinpmsc2";
1212
};
1313

1414
doCheck = true;
1515

1616
nativeBuildInputs = [ autoreconfHook ];
1717

18-
meta = with lib; {
18+
meta = with stdenv.lib; {
1919
description = "Unpacks MIME attachments of type application/ms-tnef";
2020
longDescription = ''
2121
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 {
2626
'';
2727
homepage = https://github.com/verdammelt/tnef;
2828
license = licenses.gpl2;
29-
maintainers = [ ];
29+
maintainers = [ peterhoeg ];
3030
platforms = platforms.all;
3131
};
3232
}

0 commit comments

Comments
 (0)
Please sign in to comment.