depot/go/nix/nixstore/default.nix

24 lines
542 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2022 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, ... }:
depot.third_party.buildGo.package {
name = "nixstore";
2024-11-16 15:30:41 +00:00
path = "git.lukegb.com/lukegb/depot/go/nix/nixstore";
srcs = [
./activities.go
2022-10-09 23:49:44 +00:00
./nixstore.go
./remotestore.go
2022-10-09 22:48:18 +00:00
./sqlitestore.go
];
deps = with depot; [
2023-08-23 23:00:44 +00:00
go.nix.nar
go.nix.nar.narinfo
2023-08-23 23:00:44 +00:00
go.nix.nixdrv
2022-10-09 23:49:44 +00:00
go.nix.nixwire
third_party.gopkgs."github.com".mattn.go-sqlite3
third_party.gopkgs."golang.org".x.crypto.ssh
];
}