gnu: fcitx5-lua: Remove stale build steps.

* gnu/packages/fcitx5.scm (fcitx-lua)[arguments]: Remove it.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
Zhu Zihao 2020-12-08 21:44:38 +08:00 committed by 宋文武
parent f769ad12f1
commit 2639a99cf3
No known key found for this signature in database
GPG key ID: D415BF253B515976

View file

@ -156,25 +156,6 @@ (define-public fcitx5-lua
(sha256
(base32 "177mj56j8yrl79hvk7bbrifvm137np23pwalv83ibgk4l51z92hf"))))
(build-system cmake-build-system)
(arguments
`(#:configure-flags
(list
(string-append "-DFEM_INCLUDE_INSTALL_DIR=" %output "/include")
(string-append "-DFEM_LIB_INSTALL_DIR=" %output "/lib"))
#:phases
(modify-phases %standard-phases
(add-before 'configure 'patch-install-prefix
(lambda* (#:key outputs #:allow-other-keys)
(for-each
(lambda (x)
(format #t "patch-install-prefix: Fixing install prefix in ~a~%"
x)
(substitute* x
(("\\$\\{FCITX_INSTALL_PKGDATADIR\\}")
(string-append (assoc-ref outputs "out")
"/share/fcitx5"))))
'("src/addonloader/CMakeLists.txt"
"src/imeapi/CMakeLists.txt")))))))
(inputs
`(("fcitx5" ,fcitx5)
("lua" ,lua)