lol

qt6Packages.quazip: init

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

+5 -1
+2 -1
pkgs/development/libraries/quazip/default.nix
··· 1 - { fetchFromGitHub, lib, stdenv, zlib, qtbase, cmake, fixDarwinDylibNames }: 1 + { fetchFromGitHub, lib, stdenv, zlib, qtbase, qt5compat ? null, cmake, fixDarwinDylibNames }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "quazip"; ··· 12 12 }; 13 13 14 14 buildInputs = [ zlib qtbase ]; 15 + propagatedBuildInputs = [ qt5compat ]; 15 16 nativeBuildInputs = [ cmake ] 16 17 ++ lib.optional stdenv.isDarwin fixDarwinDylibNames; 17 18
+3
pkgs/top-level/qt6-packages.nix
··· 17 17 in 18 18 19 19 (qt6 // { 20 + # LIBRARIES 21 + 22 + quazip = callPackage ../development/libraries/quazip { }; 20 23 })))