gmnisrv: unstable-2021-05-16 → 1.0

authored by Nikolay Korotkiy and committed by ehmry f8c288d3 41c9be7c

+8 -3
+8 -3
pkgs/servers/gemini/gmnisrv/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gmnisrv"; 5 - version = "unstable-2021-05-16"; 5 + version = "1.0"; 6 6 7 7 src = fetchFromSourcehut { 8 8 owner = "~sircmpwn"; 9 9 repo = "gmnisrv"; 10 - rev = "b9a92193e96bbe621ebc8430d8308d45a5b86cef"; 11 - sha256 = "sha256-eMKsoq3Y+eS20nxI7EoDLbdwdoB6shbGt6p8wS+uoPc="; 10 + rev = version; 11 + sha256 = "sha256-V9HXXYQIo3zeqZjJEn+dhemNg6AU+ee3FRmBmXgLuYQ="; 12 12 }; 13 + 14 + postPatch = '' 15 + substituteInPlace config.sh \ 16 + --replace "pkg-config" "${stdenv.cc.targetPrefix}pkg-config" 17 + ''; 13 18 14 19 MIMEDB = "${mime-types}/etc/mime.types"; 15 20 nativeBuildInputs = [ pkg-config scdoc ];