about summary refs log tree commit diff
diff options
context:
space:
mode:
authorIvan Mincik <ivan.mincik@gmail.com>2023-08-26 19:08:59 +0200
committerIvan Mincik <ivan.mincik@gmail.com>2023-08-26 19:08:59 +0200
commit09f9749a096b4b7978445bcaf519017268a8ac69 (patch)
treec50bea9b63a3e2fdd08151f09e34d306c6c61c91
parentb2a14fc0e4afe6b9b781bfa25d77b3600e8202dc (diff)
qgis: alphabetical sorting of dependencies
-rw-r--r--pkgs/applications/gis/qgis/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/applications/gis/qgis/default.nix b/pkgs/applications/gis/qgis/default.nix
index b3220f8d7081d..8fa7338c6eaff 100644
--- a/pkgs/applications/gis/qgis/default.nix
+++ b/pkgs/applications/gis/qgis/default.nix
@@ -1,8 +1,11 @@
-{ lib, makeWrapper, symlinkJoin
+{ lib
+, makeWrapper
+, symlinkJoin
+
 , extraPythonPackages ? (ps: [ ])
+
 , libsForQt5
 }:
-with lib;
 let
   qgis-unwrapped = libsForQt5.callPackage ./unwrapped.nix {  };
 in symlinkJoin rec {
@@ -12,7 +15,10 @@ in symlinkJoin rec {
 
   paths = [ qgis-unwrapped ];
 
-  nativeBuildInputs = [ makeWrapper qgis-unwrapped.py.pkgs.wrapPython ];
+  nativeBuildInputs = [
+    makeWrapper
+    qgis-unwrapped.py.pkgs.wrapPython
+  ];
 
   # extend to add to the python environment of QGIS without rebuilding QGIS application.
   pythonInputs = qgis-unwrapped.pythonBuildInputs ++ (extraPythonPackages qgis-unwrapped.py.pkgs);