From 76cc1fd92379a39b24612ef7ba4e88c3bdc88f83 Mon Sep 17 00:00:00 2001 From: Tom Fitzhenry Date: Mon, 21 Oct 2024 18:42:22 +1100 Subject: [PATCH] spiped: format with nixfmt --- pkgs/tools/networking/spiped/default.nix | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/networking/spiped/default.nix b/pkgs/tools/networking/spiped/default.nix index 233da21ec93e..a9be3ffbeb6c 100644 --- a/pkgs/tools/networking/spiped/default.nix +++ b/pkgs/tools/networking/spiped/default.nix @@ -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 ]; }; }