diff options
author | Jake Leporte <jakeleporte@outlook.com> | 2023-03-06 06:47:58 -0600 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-21 20:43:09 -0400 |
commit | 58cb6daa765e57e85784c9ab07fcb27c1ffaae8c (patch) | |
tree | 4cc060b35014935e1899d59afb5690be062934a9 /gnu | |
parent | f4b88d5ffc743bd878d3eb1ce9dc4e332a9bfed0 (diff) |
gnu: Add xforms-gl.
* gnu/packages/xdisorg.scm (xforms-gl): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xdisorg.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index cf1adfe190..29c99af878 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -3497,3 +3497,11 @@ button is pressed. To make this even easier XForms comes with a program called @code{fdesign} that allows you to design a GUI for a program directly on the screen and which then writes out the necessary C code for it.") (license license:lgpl2.1+)))) + +(define-public xforms-gl + (package/inherit xforms + (name "xforms-gl") + (propagated-inputs (modify-inputs (package-propagated-inputs xforms) + (append mesa))) + (synopsis + "GUI toolkit for X based on the X11 Xlib library, with OpenGL support"))) |