nixpkgs/pkgs/development/libraries/xcb-imdkit/default.nix

42 lines
755 B
Nix
Raw Normal View History

{ lib, stdenv
2020-12-13 02:57:55 +00:00
, fetchFromGitHub
, cmake
, extra-cmake-modules
, uthash
, xcbutil
, xcbutilkeysyms
, xorgproto
}:
stdenv.mkDerivation rec {
pname = "xcb-imdkit";
2021-01-16 03:15:46 +00:00
version = "1.0.2";
2020-12-13 02:57:55 +00:00
src = fetchFromGitHub {
owner = "fcitx";
repo = "xcb-imdkit";
rev = version;
2021-01-16 03:15:46 +00:00
sha256 = "sha256-ISaVsMtDsyfhbhsAwDSWkQ7ZcpNtvC7M9NFQsWA5ju8=";
2020-12-13 02:57:55 +00:00
};
nativeBuildInputs = [
cmake
extra-cmake-modules
xorgproto
uthash
];
buildInputs = [
xcbutil
xcbutilkeysyms
];
meta = with lib; {
2020-12-13 02:57:55 +00:00
description = "input method development support for xcb";
homepage = "https://github.com/fcitx/xcb-imdkit";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ poscat ];
platforms = platforms.linux;
};
}