2022-01-07 04:07:37 +00:00
|
|
|
{ lib, stdenv, autoconf, automake, libtool, m4, fetchFromGitLab, bash, pkg-config, sqlite }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libcangjie";
|
|
|
|
version = "1.4_rev_${rev}";
|
|
|
|
rev = "a73c1d8783f7b6526fd9b2cc44a669ffa5518d3d";
|
|
|
|
|
2022-01-07 04:07:37 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "Cangjians";
|
|
|
|
repo = "libcangjie";
|
|
|
|
inherit rev;
|
|
|
|
sha256 = "sha256-R7WqhxciaTxhTiwPp2EUNTOh477gi/Pj3VpMtat5qXw=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ automake autoconf libtool m4 sqlite ];
|
|
|
|
|
|
|
|
configureScript = "./autogen.sh";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
preConfigure = ''
|
|
|
|
find . -name '*.sh' -exec sed -e 's@#!/bin/bash@${bash}/bin/bash@' -i '{}' ';'
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A C library implementing the Cangjie input method";
|
|
|
|
longDescription = ''
|
|
|
|
libcangjie is a library implementing the Cangjie input method.
|
|
|
|
'';
|
2022-01-07 04:07:37 +00:00
|
|
|
homepage = "https://gitlab.freedesktop.org/cangjie/libcangjie";
|
2021-02-05 17:12:51 +00:00
|
|
|
license = lib.licenses.lgpl3Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
maintainers = [ lib.maintainers.linquize ];
|
|
|
|
platforms = lib.platforms.all;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|