blob: fef89ade352587928c6e7b8c36f84ff3276948be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 2020-2023 LiGurOs Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="NVIDIA Docker"
HOMEPAGE="https://github.com/NVIDIA/nvidia-docker"
SRC_URI="https://github.com/NVIDIA/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="*"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}
app-containers/docker
>=app-containers/nvidia-container-toolkit-1.7.0
x11-drivers/nvidia-drivers"
src_compile() {
:
}
src_install() {
dobin ${PN}
dodir /etc/docker
insinto /etc/docker
doins daemon.json
}
|