14 lines
429 B
Nix
14 lines
429 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/dghubble/oauth1";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "dghubble";
|
|
repo = "oauth1";
|
|
rev = "6a43e27d73f59c407eb2a1c7ce315527e8bb25fe";
|
|
sha256 = "1nx2znp37yhd10w99wnvd5xs0ps6w3qa1xa6brx2a9rpwnmqhyif";
|
|
};
|
|
}
|