base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / package-management / packagekit / qt.nix
blob79350e340f90ac542005e46b3fd6df18b72f9629
1 { stdenv, lib, fetchFromGitHub, cmake, pkg-config
2 , qttools, packagekit }:
4 let
5   isQt6 = lib.versions.major qttools.version == "6";
6 in stdenv.mkDerivation rec {
7   pname = "packagekit-qt";
8   version = "1.1.2";
10   src = fetchFromGitHub {
11     owner  = "hughsie";
12     repo   = "PackageKit-Qt";
13     rev    = "v${version}";
14     sha256 = "sha256-rLNeVjzIT18qUZgj6Qcf7E59CL4gx/ArYJfs9KHrqNs=";
15   };
17   buildInputs = [ packagekit ];
19   nativeBuildInputs = [ cmake pkg-config qttools ];
21   cmakeFlags = [ (lib.cmakeBool "BUILD_WITH_QT6" isQt6) ];
23   dontWrapQtApps = true;
25   meta = packagekit.meta // {
26     description = "System to facilitate installing and updating packages - Qt";
27   };