nixpkgs/pkgs/top-level/qt6-packages.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
407 B
Nix
Raw Normal View History

2021-10-16 12:22:24 +00:00
# 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 { };
2021-10-16 12:22:24 +00:00
})))