lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 16.09-beta 18 lines 509 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation { 4 name = "libhangul-0.1.0"; 5 6 src = fetchurl { 7 url = "https://libhangul.googlecode.com/files/libhangul-0.1.0.tar.gz"; 8 sha256 = "0ni9b0v70wkm0116na7ghv03pgxsfpfszhgyj3hld3bxamfal1ar"; 9 }; 10 11 meta = with stdenv.lib; { 12 description = "Core algorithm library for Korean input routines"; 13 homepage = https://code.google.com/p/libhangul; 14 license = licenses.lgpl21; 15 maintainers = [ maintainers.ianwookim ]; 16 platforms = platforms.linux; 17 }; 18}