File tree Expand file tree Collapse file tree 1 file changed +16
-15
lines changed Expand file tree Collapse file tree 1 file changed +16
-15
lines changed Original file line number Diff line number Diff line change 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
1112rustPlatform . 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}
You can’t perform that action at this time.
0 commit comments