dev-nim/opengl: new package, add 1.2.9

Signed-off-by: Suleyman Farajli <suleyman@farajli.net>
This commit is contained in:
Suleyman Farajli
2025-11-17 13:59:28 +00:00
parent bcbe6e322a
commit 13a4b56982
2 changed files with 28 additions and 0 deletions

1
dev-nim/opengl/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST opengl-1.2.9.tar.gz 102551 BLAKE2B 6042c928ca385b41521c7ef1e8e7556971feb50d352d56d0e7c5096af5137c5db2bbe666e5de25fb4d95908e63644ce0086e052f09d2e251849e13e6cdc26989 SHA512 816800885653ebaeaeb0d4b4c3744158dd3bf7a822c84d5a739086f94aa2c8cac387e4a0a6bfd2c88d4f721cde0309502b2a61b62d4a586bac44abf7076ee4b1

View File

@@ -0,0 +1,27 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit nimble
DESCRIPTION="x11 wrapper for Nim"
HOMEPAGE="https://github.com/nim-lang/opengl"
SRC_URI="https://github.com/nim-lang/opengl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="examples"
DEPEND="dev-nim/x11"
src_install() {
nimble_src_install
if use examples; then
dodoc -r examples
fi
}