refactor: Move registry server to a subfolder

This commit is contained in:
Vincent Ambo 2019-08-12 15:14:24 +01:00 committed by Vincent Ambo
parent d699f7f91c
commit 1fa93fe6f6
4 changed files with 18 additions and 29 deletions

View 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 ];
};
}