packagekit-qt: init at 1.0.1

This commit is contained in:
Peter Hoeg 2018-02-22 12:28:33 +08:00
parent 49a8b3d22c
commit 353b00f296
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig
, qtbase, qttools, packagekit }:
stdenv.mkDerivation rec {
name = "packagekit-qt-${version}";
version = "1.0.1";
src = fetchFromGitHub {
owner = "hughsie";
repo = "PackageKit-Qt";
rev = "v${version}";
sha256 = "1ls6mn9abpwzw5wjgmslc5h9happj3516y1q67imppczk8g9h2yk";
};
buildInputs = [ packagekit ];
nativeBuildInputs = [ cmake pkgconfig qttools ];
enableParallelBuilding = true;
meta = packagekit.meta // {
description = "System to facilitate installing and updating packages - Qt";
};
}

View File

@ -4017,6 +4017,8 @@ with pkgs;
nix = nixUnstable;
};
packagekit-qt = libsForQt5.callPackage ../tools/package-management/packagekit/qt.nix { };
packetdrill = callPackage ../tools/networking/packetdrill { };
padthv1 = callPackage ../applications/audio/padthv1 { };