14 lines
401 B
Nix
14 lines
401 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/go-stomp/stomp/v3";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "go-stomp";
|
|
repo = "stomp";
|
|
rev = "v3.0.3";
|
|
hash = "sha256:0plm1p5nibqaaqbs4qxaxc3vr9h5xwx5jp3z2fv3nip07slg7rb6";
|
|
};
|
|
}
|