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
56
pkgs/tools/misc/kcollectd/default.nix
Normal file
56
pkgs/tools/misc/kcollectd/default.nix
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
{ lib
|
||||
, fetchFromGitLab
|
||||
, mkDerivation
|
||||
, qtbase
|
||||
, cmake
|
||||
, kconfig
|
||||
, kio
|
||||
, kiconthemes
|
||||
, kxmlgui
|
||||
, ki18n
|
||||
, kguiaddons
|
||||
, extra-cmake-modules
|
||||
, boost
|
||||
, shared-mime-info
|
||||
, rrdtool
|
||||
, breeze-icons
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "kcollectd";
|
||||
version = "0.12.0";
|
||||
src = fetchFromGitLab {
|
||||
owner = "aerusso";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-Ihd4Ps4t9+sNB3joO3vTxDR/25t7Ecl6yvHQ15QiUdY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
extra-cmake-modules
|
||||
shared-mime-info
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
kconfig
|
||||
kio
|
||||
kxmlgui
|
||||
kiconthemes
|
||||
ki18n
|
||||
kguiaddons
|
||||
boost
|
||||
rrdtool
|
||||
# otherwise some buttons are blank
|
||||
breeze-icons
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A graphical frontend to collectd";
|
||||
homepage = "https://www.antonioerusso.com/projects/kcollectd/";
|
||||
maintainers = [ maintainers.symphorien ];
|
||||
license = [ lib.licenses.gpl3Plus ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue