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

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

@@ -0,0 +1 @@
DIST x11-1.2.tar.gz 96522 BLAKE2B e55f3034a0a186d15010b6b13ec00e0abf84d60de3dd53277912590c31619590ce6c447083f39ba36a8b00bd63164255907031080da0041d73954dc7d646d5ce SHA512 be8e8c28eeb6083b26062b90502421ea7b4dd37a3aa95fc9a8dea796ef2954a473e9318625c0009d84e9b2460c5c0faa28ad67c0cb2796d877eed3a000e73a8d

11
dev-nim/x11/metadata.xml Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>suleyman@farajli.net</email>
<name>Suleyman Farajli</name>
</maintainer>
<upstream>
<remote-id type="github">nim-lang/x11</remote-id>
</upstream>
</pkgmetadata>

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
}