diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-08-21 03:18:01 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-08-21 03:21:35 +0300 |
commit | 32de7edf029878675ad3b257ae241a3d568d7efc (patch) | |
tree | a4f8a277b711f63ff9625da91337ddcb7331e84f | |
parent | a0f5885fefd93a3859b6e4b82b18a6db9faeee05 (diff) | |
download | guix-32de7edf029878675ad3b257ae241a3d568d7efc.tar.gz guix-32de7edf029878675ad3b257ae241a3d568d7efc.zip |
gnu: darktable: Enable building on riscv64-linux.
* gnu/packages/photo.scm (darktable)[supported-systems]: Add
riscv64-linux.
-rw-r--r-- | gnu/packages/photo.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/photo.scm b/gnu/packages/photo.scm index 09c391793d..b290e2b29a 100644 --- a/gnu/packages/photo.scm +++ b/gnu/packages/photo.scm @@ -567,7 +567,8 @@ developer. It manages your digital negatives in a database, lets you view them through a zoomable lighttable and enables you to develop raw images and enhance them.") ;; See src/is_supported_platform.h for supported platforms. - (supported-systems '("x86_64-linux" "aarch64-linux" "powerpc64le-linux")) + (supported-systems '("x86_64-linux" "aarch64-linux" "powerpc64le-linux" + "riscv64-linux")) (properties '((release-monitoring-url . "https://github.com/darktable-org/darktable/releases"))) (license (list license:gpl3+ ;Darktable itself |