google-photo-uploader/flake.nix

14 lines
322 B
Nix
Raw Normal View History

2024-01-27 09:53:47 -08:00
{
description = "Google Photo Uploader";
inputs = { gomod2nix.url = "github:nix-community/gomod2nix"; };
outputs = { self, gomod2nix, ... }: {
packages = rec {
default = google-photo-uploader;
google-photo-uploader =
import ./google-photo-uploader.nix { inherit gomod2nix; };
};
};
}