15 lines
435 B
Nix
15 lines
435 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/cespare/xxhash/v2";
|
||
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
||
|
owner = "cespare";
|
||
|
repo = "xxhash";
|
||
|
rev = "3b82fb7d186719faeedd0c2864f868c74fbf79a1";
|
||
|
hash = "sha256:1cpxfjamywjvm1530cdg7li60yabgby1a4ispina1a39h1f3c92k";
|
||
|
};
|
||
|
}
|