google-photo-uploader/google-photo-uploader.nix
2024-01-27 10:52:05 -08:00

23 lines
532 B
Nix

{ lib, buildGoApplication, ... }:
buildGoApplication rec {
pname = "google-photo-uploader";
version = "1.6.1";
src = lib.fetchFromGitHub {
owner = "int128";
repo = "gpup";
rev = version;
sha256 = "sha256-FfJbWpH//Z/NxgpH7JvOf8pWxJOxgYDABUfcyWNps30=";
};
modules = ./gomod2nix.toml;
meta = with lib; {
description = "Google photos uploader, written in Go.";
homepage = "https://github.com/int128/gpup";
license = licenses.asl20;
platforms = platforms.linux ++ platforms.darwin;
};
}