14 lines
302 B
Nix
14 lines
302 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ depot, ... }:
|
|
depot.third_party.buildGo.package {
|
|
name = "nar";
|
|
srcs = [
|
|
./narinfo.go
|
|
];
|
|
deps = with depot; [
|
|
third_party.gopkgs."github.com".numtide.go-nix.nixbase32
|
|
];
|
|
}
|