15 lines
426 B
Nix
15 lines
426 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/gorilla/mux";
|
||
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
||
|
owner = "gorilla";
|
||
|
repo = "mux";
|
||
|
rev = "98cb6bf42e086f6af920b965c38cacc07402d51b";
|
||
|
hash = "sha256:18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk";
|
||
|
};
|
||
|
}
|