package.nix (711B)
1 { 2 lib, 3 buildGoModule, 4 fetchFromSourcehut, 5 }: 6 7 buildGoModule { 8 pname = "gemcert"; 9 version = "2020-08-01"; 10 11 __structuredAttrs = true; 12 13 src = fetchFromSourcehut { 14 owner = "~solderpunk"; 15 repo = "gemcert"; 16 rev = "fc14deb2751274d2df01f8d5abef023ec7e12a8c"; 17 hash = "sha256-za3pS6WlOJ+NKqhyCfhlj7gH4U5yFXtJ6gLta7WXhb0="; 18 }; 19 20 patches = [ ./go.mod.patch ]; 21 22 vendorHash = null; 23 24 meta = { 25 description = "A simple tool for creating self-signed certs for use in Geminispace"; 26 homepage = "https://git.sr.ht/~solderpunk/gemcert"; 27 license = lib.licenses.bsd2; 28 maintainers = [ lib.maintainers.sikmir ]; 29 platforms = lib.platforms.unix; 30 mainProgram = "gemcert"; 31 }; 32 }
