16 lines
478 B
Nix
16 lines
478 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/golang/groupcache";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "golang";
|
|
repo = "groupcache";
|
|
rev = "8c9f03a8e57eb486e42badaed3fb287da51807ba";
|
|
hash = "sha256:0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh";
|
|
};
|
|
deps = with depot.third_party; [
|
|
];
|
|
}
|