14 lines
392 B
Nix
14 lines
392 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/pierrec/lz4";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "pierrec";
|
|
repo = "lz4";
|
|
rev = "v2.6.1";
|
|
hash = "sha256:0vfn01gd3hcpbj6gb4ig3pw6bv0g4j5780awr0fv4kf9id8gjvyy";
|
|
};
|
|
}
|