This updates the keybase-gui derivation to follow current Nixpkgs
conventions:
- Replace `rec` with a `finalAttrs: { ... }` lambda.
- Use `finalAttrs.version` when constructing the .deb URL.
- Enable `strictDeps` and `__structuredAttrs` for cleaner dependency
boundaries and improved evaluation consistency.
- No functional changes to the resulting keybase-gui package; this is a
structural modernization consistent with the refactor applied to
keybase itself.
This refactors the keybase derivation to follow current Nixpkgs
conventions:
- Replace `rec` with a `finalAttrs: { ... }` lambda.
- Use `tag = "v${finalAttrs.version}"` instead of `rev = "v${version}"`.
- Enable `strictDeps` and `structuredAttrs` for cleaner dependency
boundaries and improved evaluation consistency.
- No functional changes to the resulting keybase package; this is a
structural modernization aligned with buildGoModule best practices.
This fixes compilation errors like:
```
In file included from /nix/store/1p6r4w8943g0cklmsdmsm4pdvvldw8ja-lix-2.95.2-dev/include/lix/libutil/error-trace.hh:11,
from /nix/store/1p6r4w8943g0cklmsdmsm4pdvvldw8ja-lix-2.95.2-dev/include/lix/libutil/error.hh:18,
from /nix/store/1p6r4w8943g0cklmsdmsm4pdvvldw8ja-lix-2.95.2-dev/include/lix/libutil/async.hh:4,
from /nix/store/1p6r4w8943g0cklmsdmsm4pdvvldw8ja-lix-2.95.2-dev/include/lix/libutil/async-io.hh:4,
from /nix/store/1p6r4w8943g0cklmsdmsm4pdvvldw8ja-lix-2.95.2-dev/include/lix/libutil/archive.hh:4,
from /nix/store/1p6r4w8943g0cklmsdmsm4pdvvldw8ja-lix-2.95.2-dev/include/lix/libutil/hash.hh:6,
from /nix/store/1p6r4w8943g0cklmsdmsm4pdvvldw8ja-lix-2.95.2-dev/include/lix/libstore/realisation.hh:6,
from /nix/store/1p6r4w8943g0cklmsdmsm4pdvvldw8ja-lix-2.95.2-dev/include/lix/libstore/build-result.hh:4,
from ../src/plugin.cc:3:
/nix/store/1p6r4w8943g0cklmsdmsm4pdvvldw8ja-lix-2.95.2-dev/include/lix/libutil/fmt.hh:6:10: fatal error: boost/format.hpp: No such file or directory
6 | #include <boost/format.hpp>
| ^~~~~~~~~~~~~~~~~~
compilation terminated.
```