Skip to content

Commit

Permalink
qtbase-* nitpick: fix list nesting
Browse files Browse the repository at this point in the history
Generalized from #24036, and leaving the authorship there.
  • Loading branch information
orivej authored and vcunat committed Mar 19, 2017
1 parent 3ca0990 commit 583e862
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/5.5/qtbase/default.nix
Expand Up @@ -55,7 +55,7 @@ stdenv.mkDerivation {
patches =
copyPathsToStore (lib.readPathsFromFile ./. ./series)
++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch
++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ];
++ lib.optionals mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ];

postPatch =
''
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/5.6/qtbase/default.nix
Expand Up @@ -39,7 +39,7 @@ stdenv.mkDerivation {
copyPathsToStore (lib.readPathsFromFile ./. ./series)
++ [(if stdenv.isDarwin then ./cmake-paths-darwin.patch else ./cmake-paths.patch)]
++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch
++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ];
++ lib.optionals mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ];

postPatch =
''
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/5.7/qtbase/default.nix
Expand Up @@ -39,7 +39,7 @@ stdenv.mkDerivation {
copyPathsToStore (lib.readPathsFromFile ./. ./series)
++ [(if stdenv.isDarwin then ./cmake-paths-darwin.patch else ./cmake-paths.patch)]
++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch
++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ];
++ lib.optionals mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ];

postPatch =
''
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-5/5.8/qtbase/default.nix
Expand Up @@ -36,7 +36,7 @@ stdenv.mkDerivation {
patches =
copyPathsToStore (lib.readPathsFromFile ./. ./series)
++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch
++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ];
++ lib.optionals mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ];

postPatch =
''
Expand Down

0 comments on commit 583e862

Please sign in to comment.