goredo: 2.4.0 -> 2.5.0

+8 -5
+2 -2
pkgs/by-name/go/goredo/fix-tests.diff
··· 32 32 redo-stamp <"\$3" 33 33 EOF 34 34 diff '--color=auto' -ru goredo-2.0.0/t/redo-sh.tests/clean.do goredo-2.0.0.new/t/redo-sh.tests/clean.do 35 - --- goredo-2.0.0/t/redo-sh.tests/clean.do 2023-10-08 18:50:45.000000000 +0200 36 - +++ goredo-2.0.0.new/t/redo-sh.tests/clean.do 2023-10-08 20:19:29.213465244 +0200 35 + --- goredo-2.0.0/t/redo-sh.tests/clean 2023-10-08 18:50:45.000000000 +0200 36 + +++ goredo-2.0.0.new/t/redo-sh.tests/clean 2023-10-08 20:19:29.213465244 +0200 37 37 @@ -1,4 +1,4 @@ 38 38 for f in * ; do 39 39 [ -d $f ] || continue
+6 -3
pkgs/by-name/go/goredo/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "goredo"; 12 - version = "2.4.0"; 12 + version = "2.5.0"; 13 13 14 14 src = fetchurl { 15 15 url = "http://www.goredo.cypherpunks.ru/download/${pname}-${version}.tar.zst"; 16 - hash = "sha256-oUC/N6NLEVBrFC3tSEsWEXUBl5oyZNmqRTFWFbgL+zg="; 16 + hash = "sha256-kVxCHXQ9PjaLYviB8sf8oHiFniyNrHMO6C/qSZhjK7k="; 17 17 }; 18 18 19 - patches = [ ./fix-tests.diff ]; 19 + patches = [ 20 + # Adapt tests to Linux/nix-build requirements: 21 + ./fix-tests.diff 22 + ]; 20 23 21 24 nativeBuildInputs = [ zstd ]; 22 25