This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # NVIDIA beta driver supporting Vulkan and Vive | |
| EAPI=6 | |
| inherit eutils flag-o-matic linux-info linux-mod multilib-minimal nvidia-driver portability toolchain-funcs unpacker user udev | |
| SLOT="0/${PV%.*}" | |
| EMULTILIB_PKG="true" | |
| RESTRICT="bindist mirror" | |
| LICENSE="GPL-2 NVIDIA-r2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import strutils | |
| # From: https://github.com/nim-lang/nimble/blob/master/src/nimblepkg/nimscriptapi.nim#L51 | |
| proc getParams(): tuple[ | |
| scriptFile, | |
| projectFile, | |
| outFile, | |
| actionName: string, | |
| commandLineParams: seq[string] | |
| ] = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type | |
| Setoid = concept a, b | |
| a == b is bool | |
| Semigroup = concept a, b | |
| a & b is type(a) | |
| Monoid = concept a | |
| a is Semigroup | |
| identity(type(a)) is type(a) |