From 8bedb400ecd9faaac1ec6c0470980ecca042b9c4 Mon Sep 17 00:00:00 2001 From: 28allday Date: Sun, 3 May 2026 11:23:06 +0100 Subject: [PATCH] Add MIT LICENSE and clarify third-party tool licensing in README The installer had no LICENSE file and only a vague "provided as-is" line in the README. Adds MIT (matching the Intel Arc sibling repo) and a third-party tools table making clear that davinci-resolve-checker (GPL-3.0) and Resolve itself are fetched from upstream at install time, not bundled or redistributed by this installer. Co-Authored-By: Claude Opus 4.7 (1M context) --- LICENSE | 21 +++++++++++++++++++++ README.md | 12 +++++++++++- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ea5a604 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Gavin Nugent / NO SIGNAL + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 57c2f2b..952bd03 100644 --- a/README.md +++ b/README.md @@ -156,4 +156,14 @@ grep -E 'DRI_PRIME|HSA_OVERRIDE' ~/.local/bin/davinci-resolve # DRI_PRIME must ## License -Provided as-is for the Omarchy community. +This installer is [MIT](LICENSE) — © 2026 Gavin Nugent / NO SIGNAL. + +### Third-party tools + +The installer does not bundle or redistribute any of the projects below; it fetches each from upstream at install time, and they remain under their own licenses. + +| Tool | License | How it's used | +|------|---------|---------------| +| [davinci-resolve-checker](https://github.com/Ashark/davinci-resolve-checker) | GPL-3.0 | `git clone`d to `~/.local/share/davinci-resolve-checker` and symlinked into `~/.local/bin/` | +| [davincibox](https://github.com/zelikos/davincibox) | Apache-2.0 | Technique reference only (patchelf RPATH method, OpenCL conflict list) — no code copied | +| DaVinci Resolve | Blackmagic EULA | User downloads the ZIP themselves into `~/Downloads/`; the installer extracts and patches the local copy. Not redistributed. |