5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
41 lines
753 B
Nix
41 lines
753 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, extra-cmake-modules
|
|
, uthash
|
|
, xcbutil
|
|
, xcbutilkeysyms
|
|
, xorgproto
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xcb-imdkit";
|
|
version = "1.0.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fcitx";
|
|
repo = "xcb-imdkit";
|
|
rev = version;
|
|
hash = "sha256-ANU3suG62G0M5ZUWaNcwD4ot/EYSK7236zGVQZIjjuE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
xorgproto
|
|
uthash
|
|
];
|
|
|
|
buildInputs = [
|
|
xcbutil
|
|
xcbutilkeysyms
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "input method development support for xcb";
|
|
homepage = "https://github.com/fcitx/xcb-imdkit";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ poscat ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|