Enable strictDeps in our Nix builds (#1318)

<!-- The PR description should answer 2 important questions: -->

### What

All the docs examples have it, [it's recommended by the
author](https://github.com/ipetkov/crane/issues/403#issuecomment-1743416192),
and it should help with unnecessary rebuilds.

V3_GIT_ORIGIN_REV_ID: 3596dd987090756e0914f7babb1329c0d9c1a263
This commit is contained in:
Daniel Harvey 2024-11-05 09:51:48 +00:00 committed by hasura-bot
parent 9f7d961209
commit c62e5fed32

View File

@ -15,6 +15,8 @@ let
buildArgs = {
inherit pname;
strictDeps = true;
src =
let
isGraphqlFile = path: _type: builtins.match ".*graphql" path != null;