tools for building gleam projects with nix

buildGleamApplication: pass through sourceRoot and patches to buildGleam

foxgirl.engineering bab97894 ed67c76f

verified
+8
+6
CHANGELOG.md
··· 8 8 9 9 the format is based on [keep a changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [semantic versioning](https://semver.org/spec/v2.0.0.html). 10 10 11 + ## unreleased 12 + 13 + ### fixed 14 + 15 + - `sourceRoot` and `patches` now apply to `buildGleamApplication` derivations correctly 16 + 11 17 ## v1.2.0 - 2025-10-17 12 18 13 19 ### added
+2
nix/build-gleam-application.nix
··· 73 73 ; 74 74 name = finalAttrs.pname; 75 75 beamDeps = derivationList prev; 76 + sourceRoot = finalAttrs.sourceRoot or null; 77 + patches = finalAttrs.patches or [ ]; 76 78 } 77 79 ); 78 80 }