default.nix (671B)
1 { lib, stdenv, buildGoModule, fetchFromSourcehut, scdoc }: 2 3 buildGoModule rec { 4 pname = "gemini-ipfs-gateway"; 5 version = "2022-07-06"; 6 7 src = fetchFromSourcehut { 8 owner = "~hsanjuan"; 9 repo = "gemini-ipfs-gateway"; 10 rev = "fc646a2089758c1af9aba790a991c19a2e6b37e8"; 11 hash = "sha256-50viZnrgrxXNmpmfV1NQn/QTAlSEO505jbz1pzPfypA="; 12 }; 13 14 vendorHash = "sha256-nSeVJrQKbUHhLPggIfir+YGoXuMLwmon+ZgJHfNNqdM="; 15 16 meta = with lib; { 17 description = "IPFS access over the Gemini protocol"; 18 inherit (src.meta) homepage; 19 license = licenses.agpl3Only; 20 maintainers = [ maintainers.sikmir ]; 21 platforms = platforms.unix; 22 broken = true; 23 }; 24 }