croc: bump to v10.4.13

Signed-off-by: kaynetik <aleksandar@nesovic.dev>
This commit is contained in:
kaynetik
2026-07-10 07:28:51 +02:00
parent 4dd23d9a4a
commit db275fd72a
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ in
sender.execute("echo Hello World > testfile01.txt")
sender.execute("echo Hello Earth > testfile02.txt")
sender.execute(
"env CROC_SECRET=topSecret croc --pass ${pass} --relay relay send --no-local testfile01.txt testfile02.txt >&2 &"
"env CROC_SECRET=topSecret croc --pass ${pass} --relay relay send testfile01.txt testfile02.txt >&2 &"
)
# receive the testfiles and check them
+2 -2
View File
@@ -11,13 +11,13 @@
buildGoModule (finalAttrs: {
pname = "croc";
version = "10.4.12";
version = "10.4.13";
src = fetchFromGitHub {
owner = "schollz";
repo = "croc";
rev = "v${finalAttrs.version}";
hash = "sha256-ThMwPbQcxRBVvL/jxTluBc4gKbEIl1Wm69c/3r976s0=";
hash = "sha256-XhudK0wFk2VFYmd1ihW4SjJ4nzwNxOp9pTNUWJUg+AU=";
};
vendorHash = "sha256-rwGunSDIgetBsk97LxQz0WHpzMDMMESHC1OhBWRuVjI=";
+1 -1
View File
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
# start sender in background
MSG="See you later, alligator!"
croc --relay localhost:11111 send --no-local --code correct-horse-battery-staple --text "$MSG" &
croc --relay localhost:11111 send --code correct-horse-battery-staple --text "$MSG" &
# wait for things to settle
sleep 1