22 lines
604 B
Nix
22 lines
604 B
Nix
{ lib, buildGoModule, fetchgit }:
|
|
|
|
buildGoModule rec {
|
|
pname = "tinder-api-wrapper";
|
|
version = "0.1.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.cloonar.com/dominik.polakovics/tinder-api-wrapper.git";
|
|
rev = "e99b56e4346ac4ae5c1e0747e51ff3a0259440d3";
|
|
sha256 = "sha256-ZGuoFVaTBJcnGiToNvk+MRD+zW9IUQldbbqFVLEfkeU=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
meta = with lib; {
|
|
description = "Tinder API Wrapper Service";
|
|
homepage = "https://git.cloonar.com/dominik.polakovics/tinder-api-wrapper";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ /* add maintainers */ ];
|
|
};
|
|
}
|