git-lfs-transfer: init at unstable-2024-10-07

Co-authored-by: Loïc Reynier <88983487+loicreynier@users.noreply.github.com>
Co-authored-by: Arne Keller <2012gdwu+github@posteo.de>
Co-authored-by: Aleksana <alexander.huang.y@gmail.com>

chn 539e4e27 a7b7cd78

+26
+26
pkgs/by-name/gi/git-lfs-transfer/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + }: 6 + buildGoModule { 7 + pname = "git-lfs-transfer"; 8 + version = "0.1.0-unstable-2024-10-07"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "charmbracelet"; 12 + repo = "git-lfs-transfer"; 13 + rev = "422d24414fe4b803849b3f6fe7c4d8ab1b40803b"; 14 + hash = "sha256-YsplPW3i4W1RfkWQI1eGXFXb3JofQwKe+9LbjxeL1cM="; 15 + }; 16 + 17 + vendorHash = "sha256-1cGlhLdnU6yTqzcB3J1cq3gawncbtdgkb3LFh2ZmXbM="; 18 + 19 + meta = { 20 + description = "Server-side implementation of the Git LFS pure-SSH protocol"; 21 + mainProgram = "git-lfs-transfer"; 22 + homepage = "https://github.com/charmbracelet/git-lfs-transfer"; 23 + license = lib.licenses.mit; 24 + maintainers = with lib.maintainers; [ chn ]; 25 + }; 26 + }