[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/10: gnu: Add waffle.
From: |
guix-commits |
Subject: |
01/10: gnu: Add waffle. |
Date: |
Sat, 3 Feb 2024 08:23:03 -0500 (EST) |
lilyp pushed a commit to branch master
in repository guix.
commit 6ce2bd76c0e51bdfe77b9c19d70f8a25d4d007e9
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Thu Jan 25 09:56:50 2024 +0100
gnu: Add waffle.
* gnu/packages/gl.scm (waffle): New variable.
---
gnu/packages/gl.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 49dc878c02..35fb1e618c 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -19,6 +19,7 @@
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
;;; Copyright © 2023 Kaelyn Takata <kaelyn.alexi@protonmail.com>
;;; Copyright © 2023, 2024 Zheng Junjie <873216071@qq.com>
+;;; Copyright © 2024 Liliana Marie Prikler <liliana.prikler@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -39,6 +40,7 @@
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages bison)
+ #:use-module (gnu packages check)
#:use-module (gnu packages compression)
#:use-module (gnu packages documentation)
#:use-module (gnu packages elf)
@@ -1217,3 +1219,32 @@ the glProgramViewportFlip before it was replaced with
glProgramViewportInfo.")
"glmark2 is an OpenGL 2.0 and OpenGL ES 2.0 benchmark based on the
original glmark benchmark by Ben Smith.")
(license license:gpl3+)))
+
+(define-public waffle
+ (package
+ (name "waffle")
+ (version "1.8.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.freedesktop.org/mesa/waffle")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1mrw0arlrpm83cwaz7rnimkkjv3a134rcmi1h512y2g4yjzhnm8r"))
+ (modules '((ice-9 ftw)
+ (guix build utils)))
+ (snippet #~(with-directory-excursion "third_party"
+ (let ((keep '("." ".." "meson.build" "threads")))
+ (for-each (lambda (f)
+ (unless (member f keep)
+ (delete-file-recursively f)))
+ (scandir ".")))))))
+ (build-system meson-build-system)
+ (propagated-inputs (list mesa wayland))
+ (native-inputs (list cmocka pkg-config))
+ (home-page "https://waffle.freedesktop.org/")
+ (synopsis "Choose OpenGL API at runtime")
+ (description "Waffle is a library that allows one to defer selection of an
+ OpenGL API and a window system until runtime.")
+ (license license:bsd-2)))
- branch master updated (9389070b9c -> 179bb57d25), guix-commits, 2024/02/03
- 03/10: gnu: Add python-clingo-dl., guix-commits, 2024/02/03
- 07/10: gnu: Add python-tzdata., guix-commits, 2024/02/03
- 09/10: gnu: python-rpy2: Update to 3.5.15., guix-commits, 2024/02/03
- 01/10: gnu: Add waffle.,
guix-commits <=
- 02/10: gnu: Add piglit., guix-commits, 2024/02/03
- 05/10: gnu: Add python-plingo., guix-commits, 2024/02/03
- 04/10: gnu: python-clorm: Reindent with emacs., guix-commits, 2024/02/03
- 08/10: gnu: python-tzlocal: Update to 5.2., guix-commits, 2024/02/03
- 10/10: gnu: raylib: Update to 5.0., guix-commits, 2024/02/03
- 06/10: gnu: Add lua-clingo., guix-commits, 2024/02/03