nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, stdenv, fetchurl, pkg-config, gtk2, libhangul }:
2
3stdenv.mkDerivation rec {
4 pname = "nabi";
5 version = "1.0.0";
6
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 };
11
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ gtk2 libhangul ];
14
15 meta = with lib; {
16 description = "The Easy Hangul XIM";
17 homepage = "https://github.com/choehwanjin/nabi";
18 license = licenses.gpl2;
19 maintainers = [ maintainers.ianwookim ];
20 platforms = platforms.linux;
21 };
22}