acr-cli: init at 0.14 (#359508)
[NixPkgs.git] / pkgs / by-name / na / nabi / package.nix
blobaba2d2f66c672aad1106f1c39d8f8262a105889e
1 { lib, stdenv, fetchurl, pkg-config, gtk2, libhangul }:
3 stdenv.mkDerivation rec {
4   pname = "nabi";
5   version = "1.0.0";
7   src = fetchurl {
8     url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/nabi/nabi-${version}.tar.gz";
9     sha256 = "0craa24pw7b70sh253arv9bg9sy4q3mhsjwfss3bnv5nf0xwnncw";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ gtk2 libhangul ];
15   meta = with lib; {
16     description = "Easy Hangul XIM";
17     mainProgram = "nabi";
18     homepage = "https://github.com/choehwanjin/nabi";
19     changelog = "https://github.com/libhangul/nabi/blob/nabi-${version}/NEWS";
20     license = licenses.gpl2Plus;
21     maintainers = [ maintainers.ianwookim ];
22     platforms = platforms.linux;
23   };