uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
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, 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 ];
|
||||
|
||||
dontWrapQtApps = true;
|
||||
|
||||
meta = packagekit.meta // {
|
||||
description = "System to facilitate installing and updating packages - Qt";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue