14 lines
395 B
Nix
14 lines
395 B
Nix
# SPDX-FileCopyrightText: 2022 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ depot, ... }:
|
|
depot.third_party.buildGo.external {
|
|
path = "github.com/ulikunitz/xz";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "ulikunitz";
|
|
repo = "xz";
|
|
rev = "v0.5.10";
|
|
hash = "sha256:07vynk0sh8i8g7x9p9x04dj8wylvxaf8ypbi43yvcv7j6zd63c72";
|
|
};
|
|
}
|