2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2015-09-07 05:17:41 +00:00
|
|
|
|
2021-06-22 13:21:29 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libhangul";
|
|
|
|
version = "0.1.0";
|
2015-09-07 05:17:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-22 13:21:29 +00:00
|
|
|
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libhangul/libhangul-${version}.tar.gz";
|
2015-09-07 05:17:41 +00:00
|
|
|
sha256 = "0ni9b0v70wkm0116na7ghv03pgxsfpfszhgyj3hld3bxamfal1ar";
|
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2015-09-07 05:17:41 +00:00
|
|
|
description = "Core algorithm library for Korean input routines";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/choehwanjin/libhangul";
|
2015-09-07 05:17:41 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = [ maintainers.ianwookim ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|