nixpkgs/pkgs/tools/inputmethods/libkkc/default.nix
Matthew Bauer 76999cc40e treewide: remove aliases in nixpkgs
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases =
true;}'’ work in Nixpkgs.

Misc...

- qtikz: use libsForQt5.callPackage

  This ensures we get the right poppler.

- rewrites:

  docbook5_xsl -> docbook_xsl_ns
  docbook_xml_xslt -> docbook_xsl

diffpdf: fixup
2018-07-18 23:25:20 -04:00

40 lines
1 KiB
Nix

{ stdenv, fetchurl
, vala, gobjectIntrospection, intltool, python2Packages, glib
, pkgconfig
, libgee, json-glib, marisa, libkkc-data
}:
stdenv.mkDerivation rec {
pname = "libkkc";
version = "0.3.5";
name = "${pname}-${version}";
src = fetchurl {
url = "${meta.homepage}/releases/download/v${version}/${name}.tar.gz";
sha256 = "89b07b042dae5726d306aaa1296d1695cb75c4516f4b4879bc3781fe52f62aef";
};
nativeBuildInputs = [
vala gobjectIntrospection
python2Packages.python python2Packages.marisa
intltool glib pkgconfig
];
buildInputs = [ marisa libkkc-data ];
enableParallelBuilding = true;
propagatedBuildInputs = [ libgee json-glib ];
postInstall = ''
ln -s ${libkkc-data}/lib/libkkc/models $out/share/libkkc/models
'';
meta = with stdenv.lib; {
description = "Japanese Kana Kanji conversion input method library";
homepage = https://github.com/ueno/libkkc;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vanzef ];
platforms = platforms.linux;
};
}