veracrypt: format using nixfmt-rfc-style

This commit is contained in:
Ryan Omasta 2024-09-25 11:41:20 -06:00
parent 051f75f1a9
commit 202021faf6
No known key found for this signature in database

View File

@ -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;
};