Unverified Commit 202021fa authored by Ryan Omasta's avatar Ryan Omasta
Browse files

veracrypt: format using nixfmt-rfc-style

parent 051f75f1
Loading
Loading
Loading
Loading
+33 −19
Original line number Diff line number Diff line
{ 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;
  };