15 lines
395 B
Nix
15 lines
395 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/godbus/dbus/v5";
|
||
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
||
|
owner = "godbus";
|
||
|
repo = "dbus";
|
||
|
rev = "v5.1.0";
|
||
|
hash = "sha256:1kayd4x7idrhi06ahh5kqkgwzgh9icvv71mjar2d0jl486dfs8r5";
|
||
|
};
|
||
|
}
|