Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 26 lines 705 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6buildGoModule { 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}