diff options
Diffstat (limited to 'tvix/nar-bridge/pkg/http/nar_put.go')
-rw-r--r-- | tvix/nar-bridge/pkg/http/nar_put.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tvix/nar-bridge/pkg/http/nar_put.go b/tvix/nar-bridge/pkg/http/nar_put.go index d074fcb20f00..9a4238e61395 100644 --- a/tvix/nar-bridge/pkg/http/nar_put.go +++ b/tvix/nar-bridge/pkg/http/nar_put.go @@ -9,6 +9,7 @@ import ( castorev1pb "code.tvl.fyi/tvix/castore/protos" "code.tvl.fyi/tvix/nar-bridge/pkg/importer" "github.com/go-chi/chi/v5" + mh "github.com/multiformats/go-multihash/core" nixhash "github.com/nix-community/go-nix/pkg/hash" "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus" @@ -101,7 +102,7 @@ func registerNarPut(s *Server) { // Compare the nar hash specified in the URL with the one that has been // calculated while processing the NAR file. - narHash, err := nixhash.FromHashTypeAndDigest(0x12, narSha256) + narHash, err := nixhash.FromHashTypeAndDigest(mh.SHA2_256, narSha256) if err != nil { panic("must parse nixbase32") } |