Skip to content

Commit 0cb2fd7

Browse files
Builditlucalyssais
authored andcommitted
wiki-tui: format with nixfmt
1 parent 818e0e5 commit 0cb2fd7

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

pkgs/misc/wiki-tui/default.nix

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
{ lib
2-
, stdenv
3-
, rustPlatform
4-
, fetchFromGitHub
5-
, ncurses
6-
, openssl
7-
, pkg-config
8-
, Security
1+
{
2+
lib,
3+
stdenv,
4+
rustPlatform,
5+
fetchFromGitHub,
6+
ncurses,
7+
openssl,
8+
pkg-config,
9+
Security,
910
}:
1011

1112
rustPlatform.buildRustPackage rec {
@@ -23,16 +24,12 @@ rustPlatform.buildRustPackage rec {
2324
# release (see: https://github.com/NixOS/nixpkgs/issues/332957)
2425
cargoPatches = [ ./time.patch ];
2526

26-
nativeBuildInputs = [
27-
pkg-config
28-
];
27+
nativeBuildInputs = [ pkg-config ];
2928

3029
buildInputs = [
3130
ncurses
3231
openssl
33-
] ++ lib.optionals stdenv.isDarwin [
34-
Security
35-
];
32+
] ++ lib.optionals stdenv.isDarwin [ Security ];
3633

3734
cargoHash = "sha256-XovbT+KC0va7yC5j7kf6t1SnXe1uyy1KI8FRV1AwkS0=";
3835

@@ -41,7 +38,11 @@ rustPlatform.buildRustPackage rec {
4138
homepage = "https://github.com/builditluc/wiki-tui";
4239
changelog = "https://github.com/Builditluc/wiki-tui/releases/tag/v${version}";
4340
license = licenses.mit;
44-
maintainers = with maintainers; [ lom builditluc matthiasbeyer ];
41+
maintainers = with maintainers; [
42+
lom
43+
builditluc
44+
matthiasbeyer
45+
];
4546
mainProgram = "wiki-tui";
4647
};
4748
}

0 commit comments

Comments
 (0)