mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
Merge remote-tracking branch 'origin/master' into staging.
With resolved conflicts in: gnu/packages/ibus.scm gnu/packages/image.scm gnu/packages/lisp.scm gnu/packages/virtualization.scm
This commit is contained in:
commit
839bb4616f
599 changed files with 326965 additions and 238699 deletions
|
@ -64,7 +64,6 @@
|
|||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system meson)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module (guix build-system waf)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix gexp)
|
||||
|
@ -128,7 +127,7 @@ as ASCII text.")
|
|||
(propagated-inputs
|
||||
;; Headers from Mesa and GLU are needed.
|
||||
(list glu mesa))
|
||||
(home-page "http://freeglut.sourceforge.net/")
|
||||
(home-page "https://freeglut.sourceforge.net/")
|
||||
(synopsis "Alternative to the OpenGL Utility Toolkit (GLUT)")
|
||||
(description
|
||||
"Freeglut is a completely Free/OpenSourced alternative to
|
||||
|
@ -799,6 +798,32 @@ Both GLX and EGL are supported, in any combination with OpenGL and OpenGL ES.")
|
|||
license:x11
|
||||
license:expat))))
|
||||
|
||||
(define-public libopenglrecorder
|
||||
(package
|
||||
(name "libopenglrecorder")
|
||||
(version "0.1.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Benau/libopenglrecorder")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0sfx2kdw2mca3mx4fnk1yy74pilp2i9npcpyj894qkngz5aaz2wl"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f)) ;no test suite
|
||||
(native-inputs (list pkg-config))
|
||||
(inputs (list libjpeg-turbo))
|
||||
(home-page "https://github.com/Benau/libopenglrecorder")
|
||||
(synopsis "Async readback OpenGL frame buffer with audio recording")
|
||||
(description
|
||||
"libopenglrecorder is a library allowing optional async readback OpenGL
|
||||
frame buffer with optional audio recording. It will do video and audio
|
||||
encoding together.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public soil
|
||||
(package
|
||||
(name "soil")
|
||||
|
@ -923,7 +948,7 @@ and visualizations.")
|
|||
(list libpng mesa zlib))
|
||||
(arguments
|
||||
`(#:tests? #f)) ; no tests
|
||||
(home-page "http://www.geuz.org/gl2ps/")
|
||||
(home-page "https://www.geuz.org/gl2ps/")
|
||||
(synopsis "OpenGL to PostScript printing library")
|
||||
(description "GL2PS is a C library providing high quality vector
|
||||
output for any OpenGL application. GL2PS uses sorting algorithms
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue