nixpkgs/pkgs/top-level/qt6-packages.nix
Mustafa Çalışkan 70b1bbd799
qt6Packages.quazip: init
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-06-01 16:17:12 +03:00

24 lines
407 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 // {
# LIBRARIES
quazip = callPackage ../development/libraries/quazip { };
})))