treewide: Remove uses of builtins.toPath.
toPath has confusing semantics and is never necessary; it can always either just be omitted or replaced by pre-concatenating `/.`. It has been marked as "!!! obsolete?" for more than 10 years in a C++ comment, hopefully removing it will let us properly deprecate and, eventually, remove it.
This commit is contained in:
@@ -20,7 +20,7 @@ buildGoPackage rec {
|
||||
excludedPackages = "test";
|
||||
|
||||
# Generated with the nix2go
|
||||
goDeps = ./. + builtins.toPath "/deps-${version}.nix";
|
||||
goDeps = ./. + "/deps-${version}.nix";
|
||||
|
||||
meta = with lib; {
|
||||
description = "An open-source distributed time series database";
|
||||
|
||||
Reference in New Issue
Block a user