Initialize Tinder API Wrapper with server configuration and Docker setup
This commit is contained in:
21
default.nix
Normal file
21
default.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ 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 */ ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user