21 lines
639 B
Nix
21 lines
639 B
Nix
{ lib, buildGoModule, fetchGit }:
|
|
|
|
buildGoModule rec {
|
|
pname = "tinder-api-wrapper";
|
|
version = "0.1.0";
|
|
|
|
src = fetchGit {
|
|
url = "ssh://git@your-gitea-server.com/owner/tinder-api-wrapper.git";
|
|
ref = "main"; # Or specific branch/tag
|
|
# rev = "specific-commit-hash"; # Optionally pin to specific commit
|
|
};
|
|
|
|
vendorSha256 = null; # Will be replaced with actual hash on first build
|
|
|
|
meta = with lib; {
|
|
description = "Tinder API Wrapper Service";
|
|
homepage = "https://your-gitea-server.com/owner/tinder-api-wrapper";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ /* add maintainers */ ];
|
|
};
|
|
} |