14 lines
405 B
Nix
14 lines
405 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ depot, ... }:
|
|
depot.third_party.buildGo.external {
|
|
path = "github.com/cenkalti/backoff/v4";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "cenkalti";
|
|
repo = "backoff";
|
|
rev = "v4.1.2";
|
|
hash = "sha256:08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z";
|
|
};
|
|
}
|