package.nix (679B)
1 { 2 lib, 3 buildGoModule, 4 fetchFromSourcehut, 5 }: 6 7 buildGoModule { 8 pname = "gemini-ipfs-gateway"; 9 version = "0-unstable-2023-10-19"; 10 11 __structuredAttrs = true; 12 13 src = fetchFromSourcehut { 14 owner = "~hsanjuan"; 15 repo = "gemini-ipfs-gateway"; 16 rev = "f32f60780077627c552394cab92763779575e55c"; 17 hash = "sha256-44CLnlmfQQqw73Oy+GQ9525HZv+hx6IM/DrBgtEaaVg="; 18 }; 19 20 vendorHash = "sha256-Y7Hm5QbUMz+T68wlTlx5zMjJIQXOe2zhYQZc41Dwjb8="; 21 22 meta = { 23 description = "IPFS access over the Gemini protocol"; 24 homepage = "https://git.sr.ht/~hsanjuan/gemini-ipfs-gateway"; 25 license = lib.licenses.agpl3Only; 26 maintainers = [ lib.maintainers.sikmir ]; 27 }; 28 }
