2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gtk2, libhangul }:
|
2015-09-07 06:17:41 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "nabi-1.0.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2017-10-27 00:44:19 +01:00
|
|
|
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/nabi/nabi-1.0.0.tar.gz";
|
2015-09-07 06:17:41 +01:00
|
|
|
sha256 = "0craa24pw7b70sh253arv9bg9sy4q3mhsjwfss3bnv5nf0xwnncw";
|
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ gtk2 libhangul ];
|
2015-09-07 06:17:41 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-09-07 06:17:41 +01:00
|
|
|
description = "The Easy Hangul XIM";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/choehwanjin/nabi";
|
2015-09-07 06:17:41 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.ianwookim ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|