dev-nim/x11: new package, add 1.2

Signed-off-by: Suleyman Farajli <suleyman@farajli.net>
This commit is contained in:
Suleyman Farajli
2025-11-17 13:45:30 +00:00
parent 4da5986baa
commit bcbe6e322a
3 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# 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/x11"
SRC_URI="https://github.com/nim-lang/x11/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="examples"
src_install() {
nimble_src_install
if use examples; then
dodoc -r examples
fi
}