Unverified Commit 8bddc04f authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

qgis: re-export unwrapped parameters (#349247)

parents ff3e9d65 43012a81
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -5,9 +5,16 @@
, extraPythonPackages ? (ps: [ ])

, libsForQt5

# unwrapped package parameters
, withGrass ? true
, withWebKit ? false
}:
let
  qgis-unwrapped = libsForQt5.callPackage ./unwrapped.nix {  };
  qgis-unwrapped = libsForQt5.callPackage ./unwrapped.nix {
    withGrass = withGrass;
    withWebKit = withWebKit;
  };
in symlinkJoin rec {

  inherit (qgis-unwrapped) version;
+8 −1
Original line number Diff line number Diff line
@@ -5,9 +5,16 @@
, extraPythonPackages ? (ps: [ ])

, libsForQt5

# unwrapped package parameters
, withGrass ? true
, withWebKit ? false
}:
let
  qgis-ltr-unwrapped = libsForQt5.callPackage ./unwrapped-ltr.nix {  };
  qgis-ltr-unwrapped = libsForQt5.callPackage ./unwrapped-ltr.nix {
    withGrass = withGrass;
    withWebKit = withWebKit;
  };
in symlinkJoin rec {

  inherit (qgis-ltr-unwrapped) version;
+2 −2
Original line number Diff line number Diff line
@@ -6,8 +6,8 @@
, wrapGAppsHook3
, wrapQtAppsHook

, withGrass ? true
, withWebKit ? false
, withGrass
, withWebKit

, bison
, cmake
+2 −2
Original line number Diff line number Diff line
@@ -6,8 +6,8 @@
, wrapGAppsHook3
, wrapQtAppsHook

, withGrass ? true
, withWebKit ? false
, withGrass
, withWebKit

, bison
, cmake