14 lines
402 B
Nix
14 lines
402 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/ryanuber/go-glob";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "ryanuber";
|
|
repo = "go-glob";
|
|
rev = "v1.0.0";
|
|
hash = "sha256:0mhrjy0iba3jr6bsgy7q50zjr42ar1njn1sb2fvihlkhxgb2ahv2";
|
|
};
|
|
}
|