linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libhangul / default.nix
blobeea513a137cfaf0e4247e2162e5b9e783316f51a
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation {
4   name = "libhangul-0.1.0";
6   src = fetchurl {
7     url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libhangul/libhangul-0.1.0.tar.gz";
8     sha256 = "0ni9b0v70wkm0116na7ghv03pgxsfpfszhgyj3hld3bxamfal1ar";
9   };
11   meta = with lib; {
12     description = "Core algorithm library for Korean input routines";
13     homepage = "https://github.com/choehwanjin/libhangul";
14     license = licenses.lgpl21;
15     maintainers = [ maintainers.ianwookim ];
16     platforms = platforms.linux;
17   };