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
69
pkgs/servers/monitoring/longview/default.nix
Normal file
69
pkgs/servers/monitoring/longview/default.nix
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
{lib, stdenv, fetchFromGitHub, perl, perlPackages, makeWrapper, glibc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.1.5";
|
||||
pname = "longview";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "linode";
|
||||
repo = "longview";
|
||||
rev = "v${version}";
|
||||
sha256 = "1i9lli8iw8sb1bd633i82fzhx5gz85ma9d1hra41pkv2p3h823pa";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# log to systemd journal
|
||||
./log-stdout.patch
|
||||
];
|
||||
|
||||
# Read all configuration from /run/longview
|
||||
postPatch = ''
|
||||
substituteInPlace Linode/Longview/Util.pm \
|
||||
--replace /var/run/longview.pid /run/longview/longview.pid \
|
||||
--replace /etc/linode /run/longview
|
||||
substituteInPlace Linode/Longview.pl \
|
||||
--replace /etc/linode /run/longview
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildInputs = [ perl glibc ]
|
||||
++ (with perlPackages; [
|
||||
LWP
|
||||
LWPProtocolHttps
|
||||
MozillaCA
|
||||
CryptSSLeay
|
||||
IOSocketInet6
|
||||
LinuxDistribution
|
||||
JSONPP
|
||||
JSON
|
||||
LogLogLite
|
||||
TryTiny
|
||||
DBI
|
||||
DBDmysql
|
||||
]);
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin $out/usr
|
||||
mv Linode $out
|
||||
ln -s ../Linode/Longview.pl $out/bin/longview
|
||||
for h in syscall.h sys/syscall.h asm/unistd.h asm/unistd_32.h asm/unistd_64.h bits/wordsize.h bits/syscall.h; do
|
||||
${perl}/bin/h2ph -d $out ${glibc.dev}/include/$h
|
||||
mkdir -p $out/usr/include/$(dirname $h)
|
||||
mv $out${glibc.dev}/include/''${h%.h}.ph $out/usr/include/$(dirname $h)
|
||||
done
|
||||
wrapProgram $out/Linode/Longview.pl --prefix PATH : ${perl}/bin:$out/bin \
|
||||
--suffix PERL5LIB : $out/Linode --suffix PERL5LIB : $PERL5LIB \
|
||||
--suffix PERL5LIB : $out --suffix INC : $out
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://www.linode.com/longview";
|
||||
description = "Collects all of your system-level metrics and sends them to Linode";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [ maintainers.rvl ];
|
||||
inherit version;
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue