mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-29 19:54:11 +01:00
57 lines
2.1 KiB
Scheme
57 lines
2.1 KiB
Scheme
|
;;; GNU Guix --- Functional package management for GNU
|
||
|
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
|
||
|
;;;
|
||
|
;;; This file is not part of GNU Guix.
|
||
|
;;;
|
||
|
;;; This program is free software: you can redistribute it and/or modify
|
||
|
;;; it under the terms of the GNU General Public License as published by
|
||
|
;;; the Free Software Foundation, either version 3 of the License, or
|
||
|
;;; (at your option) any later version.
|
||
|
;;;
|
||
|
;;; This program is distributed in the hope that it will be useful,
|
||
|
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
;;; GNU General Public License for more details.
|
||
|
;;;
|
||
|
;;; You should have received a copy of the GNU General Public License
|
||
|
;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
|
|
||
|
(define-module (nongnu packages mesa)
|
||
|
#:use-module (gnu packages bison)
|
||
|
#:use-module (gnu packages elf)
|
||
|
#:use-module (gnu packages flex)
|
||
|
#:use-module (gnu packages freedesktop)
|
||
|
#:use-module (gnu packages xml)
|
||
|
#:use-module (gnu packages gl)
|
||
|
#:use-module (gnu packages gettext)
|
||
|
#:use-module (gnu packages llvm)
|
||
|
#:use-module (gnu packages pkg-config)
|
||
|
#:use-module (gnu packages python)
|
||
|
#:use-module (gnu packages python-xyz)
|
||
|
#:use-module (gnu packages video)
|
||
|
#:use-module (gnu packages xdisorg)
|
||
|
#:use-module (gnu packages xorg)
|
||
|
#:use-module (gnu packages vulkan)
|
||
|
#:use-module (guix build-system meson)
|
||
|
#:use-module (guix download)
|
||
|
#:use-module (guix packages)
|
||
|
#:use-module (guix utils)
|
||
|
#:use-module ((guix licenses) #:prefix license:)
|
||
|
#:use-module (ice-9 match)
|
||
|
#:use-module (srfi srfi-1))
|
||
|
|
||
|
;; Taken from (gnu packages xdisorg) on the current core-updates branch.
|
||
|
;; Remove once merged to Guix's master branch.
|
||
|
(define libdrm-next
|
||
|
(package
|
||
|
(inherit libdrm)
|
||
|
(version "2.4.112")
|
||
|
(source (origin
|
||
|
(method url-fetch)
|
||
|
(uri (string-append
|
||
|
"https://dri.freedesktop.org/libdrm/libdrm-"
|
||
|
version ".tar.xz"))
|
||
|
(sha256
|
||
|
(base32
|
||
|
"1zr0hi7k5s7my4q9hyj6ryzg89zyjx24zbqfv3c5rcq9pl87gc00"))))))
|