2017-04-24 20:23:27 +02:00
|
|
|
{ stdenv, lib, fetchFromGitHub, autoreconfHook }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libytnef";
|
2021-09-22 03:11:51 +02:00
|
|
|
version = "2.0";
|
2017-04-24 20:23:27 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Yeraze";
|
|
|
|
repo = "ytnef";
|
|
|
|
rev = "v${version}";
|
2021-09-22 03:11:51 +02:00
|
|
|
sha256 = "sha256-P5eTH5pKK+v4LCMAe6JbEbTYOJypmLMYVDYk5tGVZ14=";
|
2017-04-24 20:23:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
inherit (src.meta) homepage;
|
|
|
|
description = "Yeraze's TNEF Stream Reader - for winmail.dat files";
|
|
|
|
license = licenses.gpl2Plus;
|
2017-04-29 06:24:34 +02:00
|
|
|
platforms = platforms.all;
|
2017-04-24 20:23:27 +02:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
};
|
|
|
|
}
|