18 lines
432 B
Nix
18 lines
432 B
Nix
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
{ depot, ... }:
|
||
|
depot.third_party.buildGo.external {
|
||
|
path = "go.uber.org/atomic";
|
||
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
||
|
owner = "uber-go";
|
||
|
repo = "atomic";
|
||
|
rev = "v1.9.0";
|
||
|
hash = "sha256:187212bg6dvfwqiqqks936b6v62pkkx3zlnk5b4nz91acscc06xm";
|
||
|
};
|
||
|
|
||
|
deps = with depot.third_party; [
|
||
|
];
|
||
|
}
|