From 202021faf6417a8da47b534538e9e753ddbdd8ac Mon Sep 17 00:00:00 2001 From: Ryan Omasta Date: Wed, 25 Sep 2024 11:41:20 -0600 Subject: [PATCH] veracrypt: format using nixfmt-rfc-style --- pkgs/by-name/ve/veracrypt/package.nix | 52 +++++++++++++++++---------- 1 file changed, 33 insertions(+), 19 deletions(-) diff --git a/pkgs/by-name/ve/veracrypt/package.nix b/pkgs/by-name/ve/veracrypt/package.nix index 8e54871fbef1..87b1d5a9025e 100644 --- a/pkgs/by-name/ve/veracrypt/package.nix +++ b/pkgs/by-name/ve/veracrypt/package.nix @@ -1,19 +1,20 @@ -{ lib -, stdenv -, fetchurl -, pkg-config -, makeself -, yasm -, fuse -, wxGTK32 -, lvm2 -, substituteAll -, e2fsprogs -, exfat -, ntfs3g -, btrfs-progs -, pcsclite -, wrapGAppsHook3 +{ + lib, + stdenv, + fetchurl, + pkg-config, + makeself, + yasm, + fuse, + wxGTK32, + lvm2, + substituteAll, + e2fsprogs, + exfat, + ntfs3g, + btrfs-progs, + pcsclite, + wrapGAppsHook3, }: stdenv.mkDerivation (finalAttrs: { @@ -39,8 +40,18 @@ stdenv.mkDerivation (finalAttrs: { sourceRoot = "src"; - nativeBuildInputs = [ makeself pkg-config yasm wrapGAppsHook3 ]; - buildInputs = [ fuse lvm2 wxGTK32 pcsclite ]; + nativeBuildInputs = [ + makeself + pkg-config + yasm + wrapGAppsHook3 + ]; + buildInputs = [ + fuse + lvm2 + wxGTK32 + pcsclite + ]; enableParallelBuilding = true; @@ -57,7 +68,10 @@ stdenv.mkDerivation (finalAttrs: { meta = with lib; { description = "Free Open-Source filesystem on-the-fly encryption"; homepage = "https://www.veracrypt.fr/"; - license = with licenses; [ asl20 /* and */ unfree /* TrueCrypt License version 3.0 */ ]; + license = with licenses; [ + asl20 # and + unfree # TrueCrypt License version 3.0 + ]; maintainers = with maintainers; [ dsferruzza ]; platforms = platforms.linux; };