mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
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
66 lines
2.1 KiB
Nix
66 lines
2.1 KiB
Nix
{ lib, stdenv, fetchgit, fetchFromGitHub, pkg-config, ibus, ibus-table, python3, cmake }:
|
|
|
|
let
|
|
src = fetchFromGitHub {
|
|
owner = "definite";
|
|
repo = "ibus-table-chinese";
|
|
rev = "f1f6a3384f021caa3b84c517e2495086f9c34507";
|
|
sha256 = "14wpw3pvyrrqvg7al37jk2dxqfj9r4zf88j8k2n2lmdc50f3xs7k";
|
|
};
|
|
|
|
cmakeFedoraSrc = fetchgit {
|
|
url = "https://pagure.io/cmake-fedora.git";
|
|
rev = "7d5297759aef4cd086bdfa30cf6d4b2ad9446992";
|
|
sha256 = "0mx9jvxpiva9v2ffaqlyny48iqr073h84yw8ln43z2avv11ipr7n";
|
|
};
|
|
in stdenv.mkDerivation {
|
|
pname = "ibus-table-chinese";
|
|
version = "1.8.2";
|
|
|
|
srcs = [ src cmakeFedoraSrc ];
|
|
sourceRoot = src.name;
|
|
|
|
postUnpack = ''
|
|
chmod u+w -R ${cmakeFedoraSrc.name}
|
|
mv ${cmakeFedoraSrc.name}/* source/cmake-fedora
|
|
'';
|
|
|
|
preConfigure = ''
|
|
# cmake script needs ./Modules folder to link to cmake-fedora
|
|
ln -s cmake-fedora/Modules ./
|
|
'';
|
|
|
|
# Fails when writing to /prj_info.cmake in https://pagure.io/cmake-fedora/blob/master/f/Modules/ManageVersion.cmake
|
|
cmakeFlags = [ "-DPRJ_INFO_CMAKE_FILE=/dev/null" "-DPRJ_DOC_DIR=REPLACE" "-DDATA_DIR=share" ];
|
|
# Must replace PRJ_DOC_DIR with actual share/ folder for ibus-table-chinese
|
|
# Otherwise it tries to write to /ibus-table-chinese if not defined (!)
|
|
postConfigure = ''
|
|
substituteInPlace cmake_install.cmake --replace '/build/source/REPLACE' $out/share/ibus-table-chinese
|
|
'';
|
|
# Fails otherwise with "no such file or directory: <table>.txt"
|
|
dontUseCmakeBuildDir = true;
|
|
# Fails otherwise sometimes with
|
|
# FileExistsError: [Errno 17] File exists: '/build/tmp.BfVAUM4llr/ibus-table-chinese/.local/share/ibus-table'
|
|
enableParallelBuilding = false;
|
|
|
|
preBuild = ''
|
|
export HOME=$(mktemp -d)/ibus-table-chinese
|
|
'';
|
|
|
|
postFixup = ''
|
|
rm -rf $HOME
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ ibus ibus-table python3 ];
|
|
|
|
meta = with lib; {
|
|
isIbusEngine = true;
|
|
description = "Chinese tables for IBus-Table";
|
|
homepage = "https://github.com/definite/ibus-table-chinese";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ pneumaticat ];
|
|
};
|
|
}
|