doggo: unpin go
This commit is contained in:
parent
27f58aceb0
commit
9d4dab5df8
2 changed files with 12 additions and 4 deletions
|
@ -2,6 +2,7 @@
|
||||||
, buildGoModule
|
, buildGoModule
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, installShellFiles
|
, installShellFiles
|
||||||
|
, fetchpatch
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
|
@ -15,7 +16,16 @@ buildGoModule rec {
|
||||||
sha256 = "sha256-qc6RYz2bVaY/IBGIXUYO6wyh7iUDAJ1ASCK0dFwZo6s=";
|
sha256 = "sha256-qc6RYz2bVaY/IBGIXUYO6wyh7iUDAJ1ASCK0dFwZo6s=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-UhSdYpK54c4+BAP/d/zU91LIBE05joOLHoV1XkNMYNw=";
|
patches = [
|
||||||
|
# go 1.20 support
|
||||||
|
# https://github.com/mr-karan/doggo/pull/66
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/mr-karan/doggo/commit/7db5c2144fa4a3f18afe1c724b9367b03f84aed7.patch";
|
||||||
|
hash = "sha256-cx8s23e02zIvJOtuqTz8XC9ApYODh96Ubl1KhsFUZ9g=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
vendorHash = "sha256-GVLfPK1DFVSfNSdIxYSaspHFphd8ft2HUK0SMeWiVUg=";
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
subPackages = [ "cmd/doggo" ];
|
subPackages = [ "cmd/doggo" ];
|
||||||
|
|
||||||
|
|
|
@ -7186,9 +7186,7 @@ with pkgs;
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
|
||||||
doggo = callPackage ../tools/networking/doggo {
|
doggo = callPackage ../tools/networking/doggo { };
|
||||||
buildGoModule = buildGo119Module; # build fails with 1.20
|
|
||||||
};
|
|
||||||
|
|
||||||
dool = callPackage ../tools/system/dool { };
|
dool = callPackage ../tools/system/dool { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue