libytnef: init at 1.9.2

This commit is contained in:
Franz Pletz
2017-04-24 21:06:52 +02:00
parent fee8d87d48
commit bede043070
2 changed files with 28 additions and 0 deletions
@@ -0,0 +1,25 @@
{ stdenv, lib, fetchFromGitHub, autoreconfHook }:
with lib;
stdenv.mkDerivation rec {
name = "libytnef-${version}";
version = "1.9.2";
src = fetchFromGitHub {
owner = "Yeraze";
repo = "ytnef";
rev = "v${version}";
sha256 = "1aavckl7rjbiakwcf4rrkhchrl450p3vq3dy78cxfmgg0jqnvxqy";
};
nativeBuildInputs = [ autoreconfHook ];
meta = {
inherit (src.meta) homepage;
description = "Yeraze's TNEF Stream Reader - for winmail.dat files";
license = licenses.gpl2Plus;
platform = platforms.all;
maintainers = with maintainers; [ fpletz ];
};
}