default.nix (650B)
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 src = fetchFromSourcehut { 12 owner = "~hsanjuan"; 13 repo = "gemini-ipfs-gateway"; 14 rev = "f32f60780077627c552394cab92763779575e55c"; 15 hash = "sha256-44CLnlmfQQqw73Oy+GQ9525HZv+hx6IM/DrBgtEaaVg="; 16 }; 17 18 vendorHash = "sha256-Y7Hm5QbUMz+T68wlTlx5zMjJIQXOe2zhYQZc41Dwjb8="; 19 20 meta = { 21 description = "IPFS access over the Gemini protocol"; 22 homepage = "https://git.sr.ht/~hsanjuan/gemini-ipfs-gateway"; 23 license = lib.licenses.agpl3Only; 24 maintainers = [ lib.maintainers.sikmir ]; 25 }; 26 }