Skip to content

Commit b7f7cc1

Browse files
committed
bambu-studio: format file
1 parent 18fcf07 commit b7f7cc1

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

pkgs/applications/misc/bambu-studio/default.nix

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,18 @@
4343
withSystemd ? stdenv.hostPlatform.isLinux,
4444
}:
4545
let
46-
wxGTK' = (wxGTK31.override {
46+
wxGTK' =
47+
(wxGTK31.override {
4748
withCurl = true;
4849
withPrivateFonts = true;
4950
withWebKit = true;
50-
})
51-
.overrideAttrs (old: {
52-
configureFlags = old.configureFlags ++ [
53-
# Disable noisy debug dialogs
54-
"--enable-debug=no"
55-
];
56-
});
51+
}).overrideAttrs
52+
(old: {
53+
configureFlags = old.configureFlags ++ [
54+
# Disable noisy debug dialogs
55+
"--enable-debug=no"
56+
];
57+
});
5758

5859
openvdb' = openvdb.overrideAttrs (old: {
5960
buildInputs = [
@@ -192,7 +193,10 @@ stdenv.mkDerivation rec {
192193
homepage = "https://github.com/bambulab/BambuStudio";
193194
changelog = "https://github.com/bambulab/BambuStudio/releases/tag/v${version}";
194195
license = licenses.agpl3Plus;
195-
maintainers = with maintainers; [ zhaofengli dsluijk ];
196+
maintainers = with maintainers; [
197+
zhaofengli
198+
dsluijk
199+
];
196200
mainProgram = "bambu-studio";
197201
platforms = platforms.linux;
198202
};

0 commit comments

Comments
 (0)