refactor: Move registry server to a subfolder
This commit is contained in:
parent
d699f7f91c
commit
1fa93fe6f6
4 changed files with 18 additions and 29 deletions
16
tools/nixery/server/default.nix
Normal file
16
tools/nixery/server/default.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ buildGoPackage, lib }:
|
||||
|
||||
buildGoPackage {
|
||||
name = "nixery-server";
|
||||
goDeps = ./go-deps.nix;
|
||||
src = ./.;
|
||||
|
||||
goPackagePath = "github.com/google/nixery";
|
||||
|
||||
meta = {
|
||||
description = "Container image builder serving Nix-backed images";
|
||||
homepage = "https://github.com/google/nixery";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ lib.maintainers.tazjin ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue