mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-08 14:53:20 +00:00
25 lines
557 B
Nix
25 lines
557 B
Nix
{ stdenv, fetchFromGitHub, cmake, pkg-config
|
|
, qttools, packagekit }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "packagekit-qt";
|
|
version = "1.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hughsie";
|
|
repo = "PackageKit-Qt";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-pwDMLd+Gpl0P2ImPjGeZpKAOJ4dH5+P1se0l1qm5Ui0=";
|
|
};
|
|
|
|
buildInputs = [ packagekit ];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config qttools ];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = packagekit.meta // {
|
|
description = "System to facilitate installing and updating packages - Qt";
|
|
};
|
|
}
|