spiped: format with nixfmt

This commit is contained in:
Tom Fitzhenry 2024-10-21 18:42:22 +11:00 committed by tomf
parent 61a8dd4898
commit 76cc1fd923

View File

@ -1,11 +1,17 @@
{ lib, stdenv, fetchurl, openssl, coreutils }:
{
lib,
stdenv,
fetchurl,
openssl,
coreutils,
}:
stdenv.mkDerivation rec {
pname = "spiped";
version = "1.6.2";
src = fetchurl {
url = "https://www.tarsnap.com/spiped/${pname}-${version}.tgz";
url = "https://www.tarsnap.com/spiped/${pname}-${version}.tgz";
sha256 = "sha256-BdRofRLRHX+YiNQ/PYDFQbdyHJhwONCF9xyRuwYgRWc=";
};
@ -19,7 +25,7 @@ stdenv.mkDerivation rec {
substituteInPlace libcperciva/POSIX/posix-l.sh \
--replace "rm" "${coreutils}/bin/rm" \
--replace "2>/dev/null" "2>stderr.log"
'';
'';
installPhase = ''
runHook preInstall
@ -30,9 +36,9 @@ stdenv.mkDerivation rec {
meta = {
description = "Utility for secure encrypted channels between sockets";
homepage = "https://www.tarsnap.com/spiped.html";
license = lib.licenses.bsd2;
platforms = lib.platforms.unix;
homepage = "https://www.tarsnap.com/spiped.html";
license = lib.licenses.bsd2;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.thoughtpolice ];
};
}