File tree 1 file changed +6
-6
lines changed
pkgs/applications/misc/tnef
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- { stdenv , fetchFromGitHub , lib , autoreconfHook } :
1
+ { stdenv , fetchFromGitHub , autoreconfHook } :
2
2
3
3
stdenv . mkDerivation rec {
4
4
version = "1.4.14" ;
5
5
name = "tnef-${ version } " ;
6
6
7
7
src = fetchFromGitHub {
8
- owner = "verdammelt" ;
9
- repo = "tnef" ;
10
- rev = " ${ version } " ;
8
+ owner = "verdammelt" ;
9
+ repo = "tnef" ;
10
+ rev = version ;
11
11
sha256 = "0p7yji5hqq7k4pcba1cnv4jkl0fkg7jd77c1q164wk0vwinpmsc2" ;
12
12
} ;
13
13
14
14
doCheck = true ;
15
15
16
16
nativeBuildInputs = [ autoreconfHook ] ;
17
17
18
- meta = with lib ; {
18
+ meta = with stdenv . lib ; {
19
19
description = "Unpacks MIME attachments of type application/ms-tnef" ;
20
20
longDescription = ''
21
21
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 {
26
26
'' ;
27
27
homepage = https://github.com/verdammelt/tnef ;
28
28
license = licenses . gpl2 ;
29
- maintainers = [ ] ;
29
+ maintainers = [ peterhoeg ] ;
30
30
platforms = platforms . all ;
31
31
} ;
32
32
}
You can’t perform that action at this time.
0 commit comments