mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 12:04:40 +00:00
veracrypt: format using nixfmt-rfc-style
This commit is contained in:
parent
051f75f1a9
commit
202021faf6
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user