14 lines
428 B
Nix
14 lines
428 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/beorn7/perks";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "beorn7";
|
|
repo = "perks";
|
|
rev = "37c8de3658fcb183f997c4e13e8337516ab753e6";
|
|
hash = "sha256:17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7";
|
|
};
|
|
}
|