packagekit-qt: init at 1.0.1
This commit is contained in:
parent
49a8b3d22c
commit
353b00f296
24
pkgs/tools/package-management/packagekit/qt.nix
Normal file
24
pkgs/tools/package-management/packagekit/qt.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user