e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
22 lines
701 B
Nix
22 lines
701 B
Nix
{ lib, stdenv, fetchurl, cmake, extra-cmake-modules, pkg-config, fcitx5, anthy, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fcitx5-anthy";
|
|
version = "5.1.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.fcitx-im.org/fcitx5/fcitx5-anthy/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-pOJYe5+/11j8YmuJDyAbFPFsnUa9DQqbYirSwD992zY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules pkg-config ];
|
|
buildInputs = [ fcitx5 anthy gettext ];
|
|
|
|
meta = with lib; {
|
|
description = "Anthy Wrapper for Fcitx5";
|
|
homepage = "https://github.com/fcitx/fcitx5-anthy";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ elnudev ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|