summary refs log tree commit diff
path: root/pkgs/tools/networking/spiped
diff options
context:
space:
mode:
authorbirlorg <python@birl.org>2021-05-08 20:22:39 +0000
committerGitHub <noreply@github.com>2021-05-08 20:22:39 +0000
commit7e41999280a80efda49947d54600de7b5fbef7b4 (patch)
tree5283292a07543aca3a3ffefb0c1a893f3f1b5dc2 /pkgs/tools/networking/spiped
parent9d469535dfa2d7de9ac68ee8be65b4b802d48ffc (diff)
downloadnixpkgs-7e41999280a80efda49947d54600de7b5fbef7b4.tar
nixpkgs-7e41999280a80efda49947d54600de7b5fbef7b4.tar.gz
nixpkgs-7e41999280a80efda49947d54600de7b5fbef7b4.tar.bz2
nixpkgs-7e41999280a80efda49947d54600de7b5fbef7b4.tar.lz
nixpkgs-7e41999280a80efda49947d54600de7b5fbef7b4.tar.xz
nixpkgs-7e41999280a80efda49947d54600de7b5fbef7b4.tar.zst
nixpkgs-7e41999280a80efda49947d54600de7b5fbef7b4.zip
spiped: 1.5.0 -> 1.6.1
upgrade spiped from 1.5.0 to 1.6.1
Diffstat (limited to 'pkgs/tools/networking/spiped')
-rw-r--r--pkgs/tools/networking/spiped/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/networking/spiped/default.nix b/pkgs/tools/networking/spiped/default.nix
index 67ee51d6610..04fc1129a25 100644
--- a/pkgs/tools/networking/spiped/default.nix
+++ b/pkgs/tools/networking/spiped/default.nix
@@ -2,22 +2,22 @@
 
 stdenv.mkDerivation rec {
   pname = "spiped";
-  version = "1.5.0";
+  version = "1.6.1";
 
   src = fetchurl {
     url    = "https://www.tarsnap.com/spiped/${pname}-${version}.tgz";
-    sha256 = "1mxcbxifr3bnj6ga8lz88y4bhff016i6kjdzwbb3gzb2zcs4pxxj";
+    sha256 = "8d7089979db79a531a0ecc507b113ac6f2cf5f19305571eff1d3413e0ab33713";
   };
 
   buildInputs = [ openssl ];
 
   patchPhase = ''
     substituteInPlace libcperciva/cpusupport/Build/cpusupport.sh \
+      --replace "dirname" "${coreutils}/bin/dirname" \
       --replace "2>/dev/null" "2>stderr.log"
 
-    substituteInPlace POSIX/posix-l.sh       \
+    substituteInPlace libcperciva/POSIX/posix-l.sh       \
       --replace "rm" "${coreutils}/bin/rm"   \
-      --replace ">/dev/stderr" ">stderr.log" \
       --replace "2>/dev/null" "2>stderr.log"
 
     substituteInPlace POSIX/posix-cflags.sh  \