Commit46e70fc1Recorded1 Apr 2026Repositorysigil-raylib

Migrate to 0.9.1 transitive deps with version ranges and lockfile

Message

Replace tag-pinned dependency URLs with version ranges. Trim deps to direct-only (sigil-stdlib, sigil-ffi). Generate sigil.lock for reproducible builds. Update README with standard build instructions and system prerequisites.

Changed
 README.md   |  8 ++++++--
 package.sgl |  6 ++----
 sigil.lock  | 15 +++++++++++++++
 3 files changed, 23 insertions(+), 6 deletions(-)
Diff
README.mdmodified
@@ -14,16 +14,20 @@ Provides FFI bindings to the [Raylib](https://www.raylib.com/) library for game
14
| `(raylib graphics)` | 2D drawing, textures, shapes |
15
| `(raylib input)` | Keyboard, mouse, and gamepad input |
16
+17
## System Prerequisites
+18
+19
- Raylib C library (must be installed on the system)
+20
21
## Dependencies
22
23
- sigil-stdlib
24
- sigil-ffi
21
- Raylib C library (must be installed on the system)
25
26
## Build
27
28
```sh
26
guix shell -m ../sigil/manifest.scm -- sigil build sigil-raylib --redirects dev-redirects.sgl
+29
sigil deps install
+30
sigil build
31
```
32
33
## License
package.sglmodified
@@ -3,8 +3,6 @@
3
;;; Provides FFI bindings to the Raylib library for game development
4
;;; in Sigil applications.
5
6
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")
7
6
(package
7
name: "sigil-raylib"
8
version: "0.8.0"
@@ -26,8 +24,8 @@
24
optimize: 2))
25
26
dependencies: (list
29
(from-git url: sigil-repo package: "sigil-stdlib")
30
(from-git url: sigil-repo package: "sigil-ffi"))
+27
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")
+28
(from-git url: "codeberg:sigil/sigil" package: "sigil-ffi" version: "^0.9.0"))
29
30
tasks: (list
31
(task
sigil.lockadded
@@ -0,0 +1,15 @@
+1
;; Auto-generated by sigil deps install. Do not edit.
+2
(lock
+3
(package name: "sigil-stdlib"
+4
url: "codeberg:sigil/sigil"
+5
ref: "^0.9.0"
+6
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+7
package-selector: "sigil-stdlib"
+8
version: "0.9.1")
+9
(package name: "sigil-ffi"
+10
url: "codeberg:sigil/sigil"
+11
ref: "^0.9.0"
+12
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+13
package-selector: "sigil-ffi"
+14
version: "0.9.1")
+15
)