mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
35 lines
575 B
Nix
35 lines
575 B
Nix
{
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
qttools,
|
|
packagekit,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "packagekit-qt";
|
|
version = "1.1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hughsie";
|
|
repo = "PackageKit-Qt";
|
|
tag = "v${version}";
|
|
hash = "sha256-D1LsEaxc6lA0ULmYQ9n2KEs6NpoHeTgOJsKzdEnImUM=";
|
|
};
|
|
|
|
buildInputs = [ packagekit ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
qttools
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = packagekit.meta // {
|
|
description = "System to facilitate installing and updating packages - Qt";
|
|
};
|
|
}
|