Skip to content

Instantly share code, notes, and snippets.

@wavewave
Last active October 30, 2015 08:43
Show Gist options
  • Select an option

  • Save wavewave/f9fd20cfb3b55ab8518b to your computer and use it in GitHub Desktop.

Select an option

Save wavewave/f9fd20cfb3b55ab8518b to your computer and use it in GitHub Desktop.
{
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