mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
libytnef: init at 1.9.2
This commit is contained in:
parent
fee8d87d48
commit
bede043070
25
pkgs/development/libraries/libytnef/default.nix
Normal file
25
pkgs/development/libraries/libytnef/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -9019,6 +9019,8 @@ with pkgs;
|
|||
|
||||
libykneomgr = callPackage ../development/libraries/libykneomgr { };
|
||||
|
||||
libytnef = callPackage ../development/libraries/libytnef { };
|
||||
|
||||
libyubikey = callPackage ../development/libraries/libyubikey { };
|
||||
|
||||
libzen = callPackage ../development/libraries/libzen { };
|
||||
|
@ -13157,6 +13159,7 @@ with pkgs;
|
|||
|
||||
claws-mail = callPackage ../applications/networking/mailreaders/claws-mail {
|
||||
inherit (gnome3) gsettings_desktop_schemas;
|
||||
inherit (xorg) libSM;
|
||||
enableNetworkManager = config.networking.networkmanager.enable or false;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue