Last active
October 30, 2015 08:43
-
-
Save wavewave/f9fd20cfb3b55ab8518b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| packageOverrides = pkgs : rec { | |
| nabi = with pkgs; stdenv.mkDerivation { | |
| name = "nabi-1.0.0-iw"; | |
| src = fetchgit { | |
| url = "http://github.com/wavewave/nabi.git"; | |
| rev = "2fc9d36e60d36cffbdc01b1b44fe4da9c9ba5901"; | |
| sha256 = "62ee6629e73b5dcf83739c786340271d58c7c99a84558a9e4e7d8e58cedb0887"; | |
| }; | |
| buildInputs = [ gtk libhangul pkgconfig automake autoconf ]; | |
| preConfigure = '' | |
| ./autogen.sh | |
| ''; | |
| meta = with stdenv.lib; { | |
| description = "The Easy Hangul XIM"; | |
| homepage = https://code.google.com/p/nabi; | |
| license = licenses.gpl2; | |
| maintainers = [ maintainers.ianwookim ]; | |
| platforms = platforms.linux; | |
| }; | |
| }; | |
| }; | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment