Merge pull request #35316 from peterhoeg/u/pk

packagekit: 1.1.7 -> 1.1.8 (packagekit-qt: init at 1.0.1)

authored by Peter Hoeg and committed by GitHub 1fa60974 cdaedbff

+28 -2
+2 -2
pkgs/tools/package-management/packagekit/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 name = "packagekit-${version}"; 11 - version = "1.1.7"; 11 + version = "1.1.8"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "hughsie"; 15 15 repo = "PackageKit"; 16 16 rev = "PACKAGEKIT_${lib.replaceStrings ["."] ["_"] version}"; 17 - sha256 = "076rrczmyhapj87pxqldsar5pbz4mid6cm9l1n91zh2q403chdkb"; 17 + sha256 = "0bn9flsjbzlwmlbv2gphqwgzy9sx8ahch28z6dzgak4csbz5wcws"; 18 18 }; 19 19 20 20 buildInputs = [ glib polkit systemd python gobjectIntrospection vala_0_38 ]
+24
pkgs/tools/package-management/packagekit/qt.nix
··· 1 + { stdenv, lib, fetchFromGitHub, cmake, pkgconfig 2 + , qtbase, qttools, packagekit }: 3 + 4 + stdenv.mkDerivation rec { 5 + name = "packagekit-qt-${version}"; 6 + version = "1.0.1"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "hughsie"; 10 + repo = "PackageKit-Qt"; 11 + rev = "v${version}"; 12 + sha256 = "1ls6mn9abpwzw5wjgmslc5h9happj3516y1q67imppczk8g9h2yk"; 13 + }; 14 + 15 + buildInputs = [ packagekit ]; 16 + 17 + nativeBuildInputs = [ cmake pkgconfig qttools ]; 18 + 19 + enableParallelBuilding = true; 20 + 21 + meta = packagekit.meta // { 22 + description = "System to facilitate installing and updating packages - Qt"; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 4027 4027 nix = nixUnstable; 4028 4028 }; 4029 4029 4030 + packagekit-qt = libsForQt5.callPackage ../tools/package-management/packagekit/qt.nix { }; 4031 + 4030 4032 packetdrill = callPackage ../tools/networking/packetdrill { }; 4031 4033 4032 4034 padthv1 = callPackage ../applications/audio/padthv1 { };