1{ lib, stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 pname = "libhangul";
5 version = "0.1.0";
6
7 src = fetchurl {
8 url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libhangul/libhangul-${version}.tar.gz";
9 sha256 = "0ni9b0v70wkm0116na7ghv03pgxsfpfszhgyj3hld3bxamfal1ar";
10 };
11
12 meta = with lib; {
13 description = "Core algorithm library for Korean input routines";
14 homepage = "https://github.com/choehwanjin/libhangul";
15 license = licenses.lgpl21;
16 maintainers = [ maintainers.ianwookim ];
17 platforms = platforms.linux;
18 };
19}