libeb: init at 4.4.3

This commit is contained in:
Gabriel Ebner 2015-09-23 19:06:06 +02:00
parent 5856e44258
commit 07cd629184
2 changed files with 26 additions and 0 deletions

@ -0,0 +1,24 @@
{ stdenv, fetchurl, perl, zlib }:
stdenv.mkDerivation rec {
name = "libeb-${version}";
version = "4.4.3";
src = fetchurl {
url = "ftp://ftp.sra.co.jp/pub/misc/eb/eb-${version}.tar.bz2";
sha256 = "0psbdzirazfnn02hp3gsx7xxss9f1brv4ywp6a15ihvggjki1rxb";
};
nativeBuildInputs = [ perl ];
buildInputs = [ zlib ];
meta = with stdenv.lib; {
description = "C library for accessing Japanese CD-ROM books";
longDescription = ''
The EB library is a library for accessing CD-ROM books, which are a
common way to distribute electronic dictionaries in Japan. It supports
the EB, EBG, EBXA, EBXA-C, S-EBXA and EPWING formats.
'';
licence = licenses.bsd3;
maintainers = with maintainers; [ gebner ];
};
}

@ -6836,6 +6836,8 @@ let
libeatmydata = callPackage ../development/libraries/libeatmydata { };
libeb = callPackage ../development/libraries/libeb { };
libebml = callPackage ../development/libraries/libebml { };
libebur128 = callPackage ../development/libraries/libebur128 { };