nixpkgs/pkgs/development/libraries/libeb/default.nix

26 lines
781 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, perl, zlib }:
2015-09-23 17:06:06 +00:00
stdenv.mkDerivation rec {
pname = "libeb";
2015-09-23 17:06:06 +00:00
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 lib; {
2015-09-23 17:06:06 +00:00
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.
'';
2015-10-10 09:11:56 +00:00
license = licenses.bsd3;
2015-09-23 17:06:06 +00:00
maintainers = with maintainers; [ gebner ];
platforms = with platforms; unix;
2015-09-23 17:06:06 +00:00
};
}