linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libeb / default.nix
blobfe0011f9c99737fa8d3783e94d612324f9607b52
1 { lib, stdenv, fetchurl, perl, zlib }:
2 stdenv.mkDerivation rec {
3   pname = "libeb";
4   version = "4.4.3";
6   src = fetchurl {
7     url = "ftp://ftp.sra.co.jp/pub/misc/eb/eb-${version}.tar.bz2";
8     sha256 = "0psbdzirazfnn02hp3gsx7xxss9f1brv4ywp6a15ihvggjki1rxb";
9   };
11   nativeBuildInputs = [ perl ];
12   buildInputs = [ zlib ];
14   meta = with lib; {
15     description = "C library for accessing Japanese CD-ROM books";
16     longDescription = ''
17       The EB library is a library for accessing CD-ROM books, which are a
18       common way to distribute electronic dictionaries in Japan.  It supports
19       the EB, EBG, EBXA, EBXA-C, S-EBXA and EPWING formats.
20     '';
21     license = licenses.bsd3;
22     maintainers = with maintainers; [ gebner ];
23     platforms = with platforms; unix;
24   };