14 lines
432 B
Nix
14 lines
432 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/numtide/go-nix";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "numtide";
|
|
repo = "go-nix";
|
|
rev = "c74bbf961f08e7ee01d034305bc0cb8777c71592";
|
|
hash = "sha256:0d1nh5hw7mwr3qs6g8ijng54bb3rzfxmsnsmsc5b5ydb082mmqi6";
|
|
};
|
|
}
|