summary refs log tree commit diff
path: root/pkgs/top-level/qt6-packages.nix
blob: 4d66d838dd2bf876cf3a57e4611272d06496844f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Qt packages set.
#
# Attributes in this file are packages requiring Qt and will be made available
# for every Qt version. Qt applications are called from `all-packages.nix` via
# this file.

{ lib
, pkgs
, qt6
}:

(lib.makeScope pkgs.newScope ( self:

let
  libsForQt6 = self;
  callPackage = self.callPackage;
in

(qt6 // {
  # LIBRARIES

  quazip = callPackage ../development/libraries/quazip { };
})))