depot/go/nix/nixstore/default.nix

23 lines
541 B
Nix

# SPDX-FileCopyrightText: 2022 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, ... }:
depot.third_party.buildGo.package {
name = "nixstore";
path = "hg.lukegb.com/lukegb/depot/go/nix/nixstore";
srcs = [
./activities.go
./nixstore.go
./remotestore.go
./sqlitestore.go
];
deps = with depot; [
go.nix.nar
go.nix.nar.narinfo
go.nix.nixdrv
go.nix.nixwire
third_party.gopkgs."github.com".mattn.go-sqlite3
third_party.gopkgs."golang.org".x.crypto.ssh
];
}