4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, gdk-pixbuf, glib, ibus, libnotify
|
|
, librime, brise }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ibus-rime";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rime";
|
|
repo = "ibus-rime";
|
|
rev = version;
|
|
sha256 = "0zbajz7i18vrqwdyclzywvsjg6qzaih64jhi3pkxp7mbw8jc5vhy";
|
|
};
|
|
|
|
buildInputs = [ gdk-pixbuf glib ibus libnotify librime brise ];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
dontUseCmakeConfigure = true;
|
|
|
|
prePatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace 'cmake' 'cmake -DRIME_DATA_DIR=${brise}/share/rime-data'
|
|
|
|
substituteInPlace rime_config.h \
|
|
--replace '/usr' $out
|
|
|
|
substituteInPlace rime_config.h \
|
|
--replace 'IBUS_RIME_SHARED_DATA_DIR IBUS_RIME_INSTALL_PREFIX' \
|
|
'IBUS_RIME_SHARED_DATA_DIR "${brise}"'
|
|
|
|
substituteInPlace rime.xml \
|
|
--replace '/usr' $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
isIbusEngine = true;
|
|
description = "Rime input method engine for IBus";
|
|
homepage = "https://rime.im/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ pengmeiyu ];
|
|
};
|
|
}
|