goredo: 2.4.0 -> 2.5.0

This commit is contained in:
Michael Raitza 2023-11-27 13:53:25 +01:00
parent ce89133d42
commit 2f3b0cc1f5
2 changed files with 8 additions and 5 deletions

View file

@ -32,8 +32,8 @@ diff '--color=auto' -ru goredo-2.0.0/t/goredo-double-consideration.t goredo-2.0.
redo-stamp <"\$3"
EOF
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
--- goredo-2.0.0/t/redo-sh.tests/clean.do 2023-10-08 18:50:45.000000000 +0200
+++ goredo-2.0.0.new/t/redo-sh.tests/clean.do 2023-10-08 20:19:29.213465244 +0200
--- goredo-2.0.0/t/redo-sh.tests/clean 2023-10-08 18:50:45.000000000 +0200
+++ goredo-2.0.0.new/t/redo-sh.tests/clean 2023-10-08 20:19:29.213465244 +0200
@@ -1,4 +1,4 @@
for f in * ; do
[ -d $f ] || continue

View file

@ -9,14 +9,17 @@
buildGoModule rec {
pname = "goredo";
version = "2.4.0";
version = "2.5.0";
src = fetchurl {
url = "http://www.goredo.cypherpunks.ru/download/${pname}-${version}.tar.zst";
hash = "sha256-oUC/N6NLEVBrFC3tSEsWEXUBl5oyZNmqRTFWFbgL+zg=";
hash = "sha256-kVxCHXQ9PjaLYviB8sf8oHiFniyNrHMO6C/qSZhjK7k=";
};
patches = [ ./fix-tests.diff ];
patches = [
# Adapt tests to Linux/nix-build requirements:
./fix-tests.diff
];
nativeBuildInputs = [ zstd ];