diff options
| author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2025-12-17 13:25:31 +0900 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-19 10:50:54 +0000 |
| commit | 76a918219e525899593de36c0aed1f3ca67a5a95 (patch) | |
| tree | a5c93f5338bc3a79a9ff6fd77ddb2473ea62499c /gnu | |
| parent | 271592e45689a131451a973e84e5868fb10be3ef (diff) | |
gnu: xkblayout: Switch to pyproject-build-system.
* gnu/packages/xdisorg.scm (xkblayout):
[build-system]: Change to pyproject-build-system.
[native-inputs]: Add python-setuptools.
[arguments]: Explicitly disable nonexistent tests.
Change-Id: I2fad5c5ba8d4f2f912657db592dde1c43556ea7f
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/xdisorg.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 4b98bd0ba81..fccfb4b49a8 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -735,7 +735,9 @@ state.") (file-name (git-file-name name version)) (sha256 (base32 "0057988l5l7pmwg7dp6cqvj5l4lr0g5z3wq189g6kz36l9rmh675")))) - (build-system python-build-system) + (build-system pyproject-build-system) + (arguments '(#:tests? #f)) ;no test + (native-inputs (list python-setuptools)) (synopsis "XKB layout template generator") (description "xkblayout is a CLI application to generate templates for a new XKB layout, either in the user's home directory or the system directory.") |
