21 lines
332 B
Nix
21 lines
332 B
Nix
|
# 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 // {
|
||
|
})))
|