about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/package-management/packagekit/qt.nix
blob: f87ce8258fa00e6bb7628b1247fea8e3c0fa6b5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchFromGitHub, cmake, pkg-config
, qttools, packagekit }:

stdenv.mkDerivation rec {
  pname = "packagekit-qt";
  version = "1.0.2";

  src = fetchFromGitHub {
    owner  = "hughsie";
    repo   = "PackageKit-Qt";
    rev    = "v${version}";
    sha256 = "1d20r503msw1vix3nb6a8bmdqld7fj8k9jk33bkqsc610a2zsms6";
  };

  buildInputs = [ packagekit ];

  nativeBuildInputs = [ cmake pkg-config qttools ];

  meta = packagekit.meta // {
    description = "System to facilitate installing and updating packages - Qt";
  };
}